From 0f34f6dfcdbeb5d27fd63cf764f1ef13eb9cdfcd Mon Sep 17 00:00:00 2001 From: maliming <6908465+maliming@users.noreply.github.com> Date: Tue, 24 Sep 2024 11:12:08 +0800 Subject: [PATCH] Rename `MapStaticAssets` extension name to `MapAbpStaticAssets`. --- .../AbpApplicationBuilderExtensions.cs | 42 +- .../AbpAspNetCoreMvcUiBootstrapDemoModule.cs | 2 +- .../AbpAspNetCoreMvcUiThemeBasicDemoModule.cs | 2 +- .../BloggingTestAppModule.cs | 2 +- .../ClientSimulationDemoModule.cs | 2 +- .../CmsKitHttpApiHostModule.cs | 2 +- .../CmsKitIdentityServerModule.cs | 2 +- .../CmsKitWebHostModule.cs | 2 +- .../CmsKitWebUnifiedModule.cs | 2 +- .../app/VoloDocs.Web/VoloDocsWebModule.cs | 2 +- .../app/OpenIddict.Demo.Client.Mvc/Program.cs | 2 +- .../app/OpenIddict.Demo.Server/Program.cs | 2 +- .../DemoAppModule.cs | 2 +- .../AbpVirtualFileExplorerDemoAppModule.cs | 2 +- .../MyProjectNameModule.cs | 2 +- .../Logs/logs.txt | 6192 ----------------- .../MyProjectNameModule.cs | 2 +- .../Server.Mongo/MyProjectNameHostModule.cs | 2 +- .../Server/MyProjectNameHostModule.cs | 2 +- .../MyProjectNameModule.cs | 2 +- .../MyProjectNameModule.cs | 2 +- .../MyProjectNameModule.cs | 2 +- .../MyProjectNameModule.cs | 2 +- .../MyProjectNameAuthServerModule.cs | 2 +- .../MyProjectNameBlazorModule.cs | 2 +- .../MyProjectNameBlazorModule.cs | 2 +- .../MyProjectNameBlazorModule.cs | 2 +- .../MyProjectNameBlazorModule.cs | 2 +- .../MyProjectNameHttpApiHostModule.cs | 2 +- .../MyProjectNameHttpApiHostModule.cs | 2 +- .../MyProjectNameWebModule.cs | 2 +- .../MyProjectNameWebModule.cs | 2 +- .../MyProjectNameAuthServerModule.cs | 2 +- .../MyProjectNameBlazorHostModule.cs | 2 +- .../MyProjectNameHttpApiHostModule.cs | 2 +- .../MyProjectNameWebHostModule.cs | 2 +- .../MyProjectNameWebUnifiedModule.cs | 2 +- 37 files changed, 64 insertions(+), 6240 deletions(-) delete mode 100644 templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Logs/logs.txt diff --git a/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs b/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs index ee8d879c79..22fec38929 100644 --- a/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs +++ b/framework/src/Volo.Abp.AspNetCore/Microsoft/AspNetCore/Builder/AbpApplicationBuilderExtensions.cs @@ -125,27 +125,43 @@ public static class AbpApplicationBuilderExtensions return app.UseMiddleware(); } - public static StaticAssetsEndpointConventionBuilder MapStaticAssets(this IApplicationBuilder app, string? staticAssetsManifestPath = null) + /// + /// MapAbpStaticAssets is used to serve the files from the abp virtual file system embedded resources(js/css) and call the MapStaticAssets. + /// + public static StaticAssetsEndpointConventionBuilder MapAbpStaticAssets(this WebApplication app, string? staticAssetsManifestPath = null) + { + return app.As().MapAbpStaticAssets(staticAssetsManifestPath); + } + + /// + /// MapAbpStaticAssets is used to serve the files from the abp virtual file system embedded resources(js/css) and call the MapStaticAssets. + /// + public static StaticAssetsEndpointConventionBuilder MapAbpStaticAssets(this IApplicationBuilder app, string? staticAssetsManifestPath = null) { if (app is not IEndpointRouteBuilder endpoints) { throw new AbpException("The app(IApplicationBuilder) is not an IEndpointRouteBuilder."); } - var contentTypeProvider = endpoints.ServiceProvider.GetRequiredService(); - var webContentFileProvider = new WebContentFileProvider( - endpoints.ServiceProvider.GetRequiredService(), - null, - endpoints.ServiceProvider.GetRequiredService>() - ); + app.UseVirtualStaticFiles(); - app.UseStaticFiles(new StaticFileOptions() + return endpoints.MapStaticAssets(staticAssetsManifestPath); + } + + /// + /// This static file provider is used to serve the files from the abp virtual file system embedded resources(js/css). + /// It will not serve the files from the application's wwwroot folder. + /// + public static IApplicationBuilder UseVirtualStaticFiles(this IApplicationBuilder app) + { + return app.UseStaticFiles(new StaticFileOptions() { - ContentTypeProvider = contentTypeProvider, - FileProvider = webContentFileProvider + ContentTypeProvider = app.ApplicationServices.GetRequiredService(), + FileProvider = new WebContentFileProvider( + app.ApplicationServices.GetRequiredService(), + null, + app.ApplicationServices.GetRequiredService>() + ) }); - - var result = endpoints.MapStaticAssets(staticAssetsManifestPath); - return result; } } diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs index 23c61fad9e..92c8b7b30b 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo/AbpAspNetCoreMvcUiBootstrapDemoModule.cs @@ -31,7 +31,7 @@ public class AbpAspNetCoreMvcUiBootstrapDemoModule : AbpModule } app.UseRouting(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseConfiguredEndpoints(); } diff --git a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs index 7d4e465470..4ebeb18498 100644 --- a/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs +++ b/modules/basic-theme/test/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic.Demo/AbpAspNetCoreMvcUiThemeBasicDemoModule.cs @@ -55,7 +55,7 @@ public class AbpAspNetCoreMvcUiThemeBasicDemoModule : AbpModule app.UseDeveloperExceptionPage(); } - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseConfiguredEndpoints(); } diff --git a/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs b/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs index 0dbb2a6d85..6e2383dcbd 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs +++ b/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs @@ -161,7 +161,7 @@ namespace Volo.BloggingTestApp app.UseErrorPage(); } - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); diff --git a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs index e7ca6c4a47..90b1c903f5 100644 --- a/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs +++ b/modules/client-simulation/demo/Volo.ClientSimulation.Demo/ClientSimulationDemoModule.cs @@ -40,7 +40,7 @@ public class ClientSimulationDemoModule : AbpModule app.UseDeveloperExceptionPage(); } - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseConfiguredEndpoints(); } diff --git a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs index a9472dfb8a..523dec994f 100644 --- a/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.HttpApi.Host/CmsKitHttpApiHostModule.cs @@ -172,7 +172,7 @@ public class CmsKitHttpApiHostModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(DefaultCorsPolicyName); app.UseAuthentication(); diff --git a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs index 79b6ffae92..623b417bc7 100644 --- a/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.IdentityServer/CmsKitIdentityServerModule.cs @@ -195,7 +195,7 @@ public class CmsKitIdentityServerModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(DefaultCorsPolicyName); app.UseAuthentication(); diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs b/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs index ab6b6dc0f9..7f2f539d7e 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Host/CmsKitWebHostModule.cs @@ -222,7 +222,7 @@ public class CmsKitWebHostModule : AbpModule } app.UseHttpsRedirection(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs index c328ef77f0..c216a6ba38 100644 --- a/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs +++ b/modules/cms-kit/host/Volo.CmsKit.Web.Unified/CmsKitWebUnifiedModule.cs @@ -263,7 +263,7 @@ public class CmsKitWebUnifiedModule : AbpModule } app.UseHttpsRedirection(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs b/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs index ec56cc6036..743944c6d3 100644 --- a/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs +++ b/modules/docs/app/VoloDocs.Web/VoloDocsWebModule.cs @@ -177,7 +177,7 @@ namespace VoloDocs.Web var app = context.GetApplicationBuilder(); var env = context.GetEnvironment(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); diff --git a/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs b/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs index 9f8238afe2..3f9afcfcbc 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Client.Mvc/Program.cs @@ -49,7 +49,7 @@ if (!app.Environment.IsDevelopment()) } app.UseHttpsRedirection(); -app.MapStaticAssets(); +app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); diff --git a/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs b/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs index 1edfd57f31..9b3126f594 100644 --- a/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs +++ b/modules/openiddict/app/OpenIddict.Demo.Server/Program.cs @@ -47,7 +47,7 @@ if (!app.Environment.IsDevelopment()) } app.UseHttpsRedirection(); -app.MapStaticAssets(); +app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs index 8f7ec0a51e..cbb97606bd 100644 --- a/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs +++ b/modules/setting-management/app/Volo.Abp.SettingManagement.DemoApp/DemoAppModule.cs @@ -120,7 +120,7 @@ public class DemoAppModule : AbpModule } app.UseHttpsRedirection(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); diff --git a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs index ea4d24ef07..c7cc5f4484 100644 --- a/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs +++ b/modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/AbpVirtualFileExplorerDemoAppModule.cs @@ -38,7 +38,7 @@ public class AbpVirtualFileExplorerDemoAppModule : AbpModule { var app = context.GetApplicationBuilder(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAbpRequestLocalization(); app.UseConfiguredEndpoints(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs index 10f5e035c5..988608d631 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs @@ -367,7 +367,7 @@ public class MyProjectNameModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Logs/logs.txt b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Logs/logs.txt deleted file mode 100644 index ef1dbe2552..0000000000 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/Logs/logs.txt +++ /dev/null @@ -1,6192 +0,0 @@ -2024-06-24 11:26:10.636 +03:00 [INF] Started database migrations... -2024-06-24 11:26:10.637 +03:00 [INF] Migrating schema for host database... -2024-06-24 11:26:11.216 +03:00 [INF] Executing host database seed... -2024-06-24 11:26:11.821 +03:00 [INF] Successfully completed host database migrations. -2024-06-24 11:26:13.803 +03:00 [INF] Successfully completed all database migrations. -2024-06-24 11:26:13.803 +03:00 [INF] You can safely end this process... -2024-06-24 11:27:37.736 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:27:37.737 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:27:37.737 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:27:37.793 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:27:37.808 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:27:37.949 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:27:37.949 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:27:38.002 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:27:38.002 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:27:38.002 +03:00 [INF] Hosting environment: Development -2024-06-24 11:27:38.002 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:28:43.449 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:28:48.982 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:48.988 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:48.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:48.989 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:48.990 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:48.995 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:48.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:48.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:48.997 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:48.998 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:48.998 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.100 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:28:49.191 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.192 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.193 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.257 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.258 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.259 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.287 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.289 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.338 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:28:49.346 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 5897.471ms -2024-06-24 11:28:49.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:28:49.362 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:28:49.364 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:28:49.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:28:49.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:28:49.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:28:49.366 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:28:49.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:28:49.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:28:49.367 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:28:49.368 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:28:49.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:28:49.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:28:49.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:28:49.370 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:28:49.370 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 8.2926ms -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:28:49.371 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 9.4604ms -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 7.2084ms -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 7.067ms -2024-06-24 11:28:49.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 4.2704ms -2024-06-24 11:28:49.372 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 7.2747ms -2024-06-24 11:28:49.372 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 10.3163ms -2024-06-24 11:28:49.372 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:28:49.372 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 7.1324ms -2024-06-24 11:28:49.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 7.4167ms -2024-06-24 11:28:49.373 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 8.6987ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 7.7804ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 10.3097ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 10.1875ms -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 7.4885ms -2024-06-24 11:28:49.374 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:28:49.374 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 8.7437ms -2024-06-24 11:28:49.375 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:28:49.375 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 19.5717ms -2024-06-24 11:28:49.375 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:28:49.375 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 5.8847ms -2024-06-24 11:28:49.380 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:28:49.380 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 14.6989ms -2024-06-24 11:28:49.381 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:28:49.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 13.2201ms -2024-06-24 11:28:49.381 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:28:49.381 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 12.634ms -2024-06-24 11:28:49.384 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:28:49.384 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 16.7133ms -2024-06-24 11:28:49.388 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:28:49.388 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 19.1694ms -2024-06-24 11:28:49.395 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:28:49.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 27.1172ms -2024-06-24 11:28:49.395 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:28:49.395 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 33.1039ms -2024-06-24 11:28:49.397 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:28:49.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 29.503ms -2024-06-24 11:28:49.403 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:28:49.403 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 34.892ms -2024-06-24 11:28:49.619 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:28:49.621 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:28:49.621 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.9471ms -2024-06-24 11:28:49.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:28:49.634 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:28:49.643 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:28:49.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 9.3734ms -2024-06-24 11:28:49.644 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:28:49.644 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:28:49.644 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 9.7988ms -2024-06-24 11:28:49.645 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.646 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.646 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.646 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.648 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.649 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.649 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.8182ms -2024-06-24 11:28:49.653 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:49.655 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.656 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.656 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.656 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.657 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.658 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.658 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 5.0437ms -2024-06-24 11:28:49.660 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=zEkT6rkad6160Ki_3rux9w - null null -2024-06-24 11:28:49.660 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:28:49.660 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.661 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.661 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:28:49.661 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:28:49.662 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:28:49.717 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.717 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.718 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.719 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:28:49.720 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:28:49.720 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:28:49.723 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.723 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:28:49.735 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.740 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.747 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:28:49.747 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 12.2211ms -2024-06-24 11:28:49.749 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:28:49.749 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 8.5035ms -2024-06-24 11:28:49.749 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.749 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:28:49.760 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:28:49.760 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 10.7168ms -2024-06-24 11:28:49.776 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:28:49.776 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 26.6193ms -2024-06-24 11:28:49.839 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:28:49.843 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:28:49.844 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 4.1372ms -2024-06-24 11:29:49.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - null null -2024-06-24 11:29:49.355 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light-thumbnail.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light-thumbnail.png' -2024-06-24 11:29:49.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - 200 9230 image/png 1.7094ms -2024-06-24 11:29:49.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:29:49.620 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:29:49.620 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 19.2791ms -2024-06-24 11:29:50.312 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:29:50.322 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:29:50.322 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 9.5731ms -2024-06-24 11:35:05.152 +03:00 [INF] Application is shutting down... -2024-06-24 11:35:05.155 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:05.155 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=zEkT6rkad6160Ki_3rux9w - 200 null null 375494.912ms -2024-06-24 11:35:05.156 +03:00 [INF] Connection id "0HN4K4UKAFFIR", Request id "0HN4K4UKAFFIR:00000041": the application completed without reading the entire request body. -2024-06-24 11:35:05.157 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:35:17.290 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:35:17.290 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:35:17.290 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:35:17.291 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:35:17.357 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:35:17.372 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:35:17.514 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:35:17.514 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:35:17.555 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:35:17.555 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:35:17.555 +03:00 [INF] Hosting environment: Development -2024-06-24 11:35:17.555 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:35:20.958 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:35:22.333 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.338 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.340 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.341 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.348 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.349 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.350 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.351 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.351 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.461 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:35:22.544 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.546 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.564 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.564 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.565 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.591 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.593 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.639 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:35:22.642 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryD7fRmXMIwURlTlQG 359 -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.643 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.644 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.644 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.644 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.647 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.648 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1690.3472ms -2024-06-24 11:35:22.651 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.651 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 9.5005ms -2024-06-24 11:35:22.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:35:22.666 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:35:22.666 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.6808ms -2024-06-24 11:35:22.668 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:35:22.668 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:35:22.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:35:22.669 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:35:22.670 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 1.2141ms -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:35:22.670 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:35:22.670 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.9437ms -2024-06-24 11:35:22.671 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:35:22.671 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:35:22.671 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:35:22.671 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.9661ms -2024-06-24 11:35:22.672 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:35:22.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 2.585ms -2024-06-24 11:35:22.672 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:35:22.672 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 2.9433ms -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 3.1187ms -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 3.1544ms -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 3.0858ms -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 2.7115ms -2024-06-24 11:35:22.673 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 3.1902ms -2024-06-24 11:35:22.673 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:35:22.673 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 2.7244ms -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:35:22.674 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 1.203ms -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:35:22.674 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 1.2988ms -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:35:22.675 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:35:22.675 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 4.3534ms -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.9811ms -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:35:22.675 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 1.4644ms -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:35:22.675 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:35:22.676 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:35:22.678 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:35:22.678 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 3.6223ms -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:35:22.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.679 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 3.5111ms -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.680 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.680 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.682 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 7.8828ms -2024-06-24 11:35:22.682 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 404 0 null 7.3321ms -2024-06-24 11:35:22.682 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 404 0 null 7.6734ms -2024-06-24 11:35:22.682 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-community.png, Response status code: 404 -2024-06-24 11:35:22.682 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:35:22.682 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-support.png, Response status code: 404 -2024-06-24 11:35:22.683 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 404 0 null 8.741ms -2024-06-24 11:35:22.683 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-blog.png, Response status code: 404 -2024-06-24 11:35:22.686 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:35:22.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 12.1333ms -2024-06-24 11:35:22.686 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:35:22.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 11.4152ms -2024-06-24 11:35:22.686 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:35:22.686 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 11.1872ms -2024-06-24 11:35:22.687 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:35:22.687 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 11.3338ms -2024-06-24 11:35:22.687 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:35:22.687 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 11.892ms -2024-06-24 11:35:22.687 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:35:22.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 14.8381ms -2024-06-24 11:35:22.688 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:35:22.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 12.9688ms -2024-06-24 11:35:22.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:35:22.694 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:35:22.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.8587ms -2024-06-24 11:35:22.716 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:35:22.720 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:35:22.721 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 4.7184ms -2024-06-24 11:35:22.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - null null -2024-06-24 11:35:22.723 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light-thumbnail.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light-thumbnail.png' -2024-06-24 11:35:22.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - 200 9230 image/png 0.8414ms -2024-06-24 11:35:22.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:35:22.727 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:35:22.727 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 2.7897ms -2024-06-24 11:35:22.810 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:35:22.813 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:35:22.813 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.088ms -2024-06-24 11:35:22.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.815 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.816 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.816 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.816 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.818 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.819 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.2676ms -2024-06-24 11:35:22.827 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.828 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.829 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.829 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.829 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.831 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.833 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.833 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 5.7595ms -2024-06-24 11:35:22.837 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=cfmeM5zKIFlsXJizmn0u3Q - null null -2024-06-24 11:35:22.837 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.838 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.838 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.839 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.839 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.840 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:22.903 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.904 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.904 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.905 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:35:22.907 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:35:22.909 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:35:22.914 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.915 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:35:22.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:35:22.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:35:22.927 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:35:22.928 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.928 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.929 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.929 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.929 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.929 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.929 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.929 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:22.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:22.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:22.930 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.931 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.931 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:22.931 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:22.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 4.9582ms -2024-06-24 11:35:22.932 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:35:22.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 404 0 null 4.4639ms -2024-06-24 11:35:22.932 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-community.png, Response status code: 404 -2024-06-24 11:35:22.933 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 404 0 null 5.7893ms -2024-06-24 11:35:22.933 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-blog.png, Response status code: 404 -2024-06-24 11:35:22.934 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 404 0 null 7.0518ms -2024-06-24 11:35:22.934 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/img-support.png, Response status code: 404 -2024-06-24 11:35:22.938 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.939 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:35:22.939 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 1.2124ms -2024-06-24 11:35:22.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.942 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.942 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:35:22.942 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.6359ms -2024-06-24 11:35:22.943 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:35:22.943 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.9712ms -2024-06-24 11:35:22.944 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:35:22.945 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:35:22.945 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.8703ms -2024-06-24 11:35:23.910 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:35:23.913 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:35:23.913 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 2.3517ms -2024-06-24 11:35:29.388 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:35:29.390 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:35:29.390 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.4068ms -2024-06-24 11:35:54.857 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300//imagesimg-support.png - null null -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.858 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.858 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.858 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:54.860 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300//imagesimg-support.png - 404 0 null 3.0254ms -2024-06-24 11:35:54.860 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300//imagesimg-support.png, Response status code: 404 -2024-06-24 11:35:54.881 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:54.881 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=cfmeM5zKIFlsXJizmn0u3Q - 200 null null 32044.0174ms -2024-06-24 11:35:54.891 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryFUUgamBYRmNnhkpc 359 -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.892 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.892 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:35:54.892 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:35:54.894 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:54.900 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:35:54.900 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:35:54.900 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 8.5636ms -2024-06-24 11:35:54.904 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:35:54.904 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 3.9686ms -2024-06-24 11:36:01.005 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300//images/img-support.png - null null -2024-06-24 11:36:01.011 +03:00 [INF] Sending file. Request path: '//images/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\img-support.png' -2024-06-24 11:36:01.011 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300//images/img-support.png - 200 33989 image/png 5.5447ms -2024-06-24 11:36:32.249 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.249 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.250 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.250 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.250 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.250 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:36:32.253 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.253 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.253 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.254 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.254 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.254 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.256 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.256 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.257 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:36:32.257 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 8.5861ms -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.286 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.286 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.287 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.287 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:36:32.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.2813ms -2024-06-24 11:36:32.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.6298ms -2024-06-24 11:36:32.287 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:36:32.297 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:36:32.297 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:36:32.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 11.0626ms -2024-06-24 11:36:32.297 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 11.3179ms -2024-06-24 11:36:32.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:36:32.311 +03:00 [INF] The file /images/logo/leptonx/logo-light.png was not modified -2024-06-24 11:36:32.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 304 null image/png 0.8137ms -2024-06-24 11:36:32.369 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:36:32.369 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.369 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.370 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.370 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.370 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.370 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.371 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.4315ms -2024-06-24 11:36:32.398 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.398 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.398 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.398 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.399 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.399 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.399 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.5576ms -2024-06-24 11:36:32.403 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=Wy0lhtUdIo6wJfOvHuU2Kg - null null -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.403 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.403 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.403 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.404 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:36:32.412 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.412 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.413 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.413 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:36:32.413 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:36:32.414 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:36:32.415 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.415 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:36:32.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:36:32.423 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.424 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.424 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:36:32.424 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:36:32.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 5.1441ms -2024-06-24 11:36:32.425 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:36:35.905 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:36:35.908 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:36:35.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.9928ms -2024-06-24 11:36:36.261 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:36:36.263 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:36:36.263 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.828ms -2024-06-24 11:37:09.535 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:37:09.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.535 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.536 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.536 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.536 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.537 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:37:09.539 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.539 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.540 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.540 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.541 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.541 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.542 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.545 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.547 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:37:09.547 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 11.7522ms -2024-06-24 11:37:09.551 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryME1irmwpc9xM3stX 359 -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.552 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.552 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=Wy0lhtUdIo6wJfOvHuU2Kg - 200 null null 37149.2461ms -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.552 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.552 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.552 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.553 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.554 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.554 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.5246ms -2024-06-24 11:37:09.580 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:37:09.582 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.9437ms -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:37:09.582 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.7079ms -2024-06-24 11:37:09.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.1164ms -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.9798ms -2024-06-24 11:37:09.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:37:09.583 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:37:09.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.4212ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.6932ms -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.2722ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.2384ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.4847ms -2024-06-24 11:37:09.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:37:09.584 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.5164ms -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:37:09.584 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.4609ms -2024-06-24 11:37:09.584 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.4585ms -2024-06-24 11:37:09.584 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 0.6729ms -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:37:09.585 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:37:09.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:37:09.585 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:37:09.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.2558ms -2024-06-24 11:37:09.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.4227ms -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6451ms -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:37:09.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:37:09.586 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 1.0605ms -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.4569ms -2024-06-24 11:37:09.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:37:09.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.6307ms -2024-06-24 11:37:09.586 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.587 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.587 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.587 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:09.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.1165ms -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:09.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.212ms -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:09.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.5593ms -2024-06-24 11:37:09.587 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.4298ms -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.7858ms -2024-06-24 11:37:09.588 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 1.0009ms -2024-06-24 11:37:09.588 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 0.9146ms -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.957ms -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:37:09.588 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 1.3607ms -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:37:09.588 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:37:09.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 4.4694ms -2024-06-24 11:37:09.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 2.0147ms -2024-06-24 11:37:09.630 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:37:09.630 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:37:09.631 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:37:09.631 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.1968ms -2024-06-24 11:37:09.633 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:37:09.633 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.7319ms -2024-06-24 11:37:09.642 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:37:09.643 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:37:09.643 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.768ms -2024-06-24 11:37:09.659 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:37:09.660 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:37:09.660 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.7813ms -2024-06-24 11:37:09.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.847 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.847 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.2534ms -2024-06-24 11:37:09.856 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:37:09.857 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.857 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.857 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.857 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.858 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:37:09.858 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.2974ms -2024-06-24 11:37:09.858 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.858 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.858 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.2333ms -2024-06-24 11:37:09.861 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=yolJ_e18CoKDeBpxmDngOA - null null -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.861 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.862 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.862 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.862 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.862 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:09.873 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.873 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.873 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.874 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:09.874 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:09.874 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:09.875 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.876 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:09.922 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:09.922 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.923 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.923 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:09.923 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:09.923 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.2068ms -2024-06-24 11:37:09.923 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:09.931 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.931 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:37:09.931 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.814ms -2024-06-24 11:37:09.932 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.932 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:37:09.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.4118ms -2024-06-24 11:37:09.935 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:37:09.936 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:37:09.936 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.7132ms -2024-06-24 11:37:09.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.939 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:37:09.939 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:37:09.939 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.7987ms -2024-06-24 11:37:09.940 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:37:09.940 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.4783ms -2024-06-24 11:37:10.509 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.509 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.510 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.510 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.510 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.510 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:37:10.511 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.512 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.513 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.514 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.514 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:37:10.515 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 5.4791ms -2024-06-24 11:37:10.518 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.518 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=yolJ_e18CoKDeBpxmDngOA - 200 null null 657.0073ms -2024-06-24 11:37:10.518 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryeCrDbgDwRxXBTUuV 359 -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.518 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.518 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.519 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.519 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.519 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.520 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.520 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 1.8328ms -2024-06-24 11:37:10.540 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:37:10.541 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:37:10.541 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.3065ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.4776ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.6477ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.6347ms -2024-06-24 11:37:10.542 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:37:10.542 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.2753ms -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:37:10.542 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.2895ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.5077ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:37:10.543 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.2249ms -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.3267ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:37:10.543 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.4903ms -2024-06-24 11:37:10.543 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:37:10.543 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:37:10.543 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 0.7344ms -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.7031ms -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.7866ms -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.258ms -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.9522ms -2024-06-24 11:37:10.544 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:10.544 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:37:10.544 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.3527ms -2024-06-24 11:37:10.545 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:37:10.545 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.4291ms -2024-06-24 11:37:10.545 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:37:10.545 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 1.5955ms -2024-06-24 11:37:10.545 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:10.545 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.3736ms -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.545 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.545 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.545 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.546 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.4525ms -2024-06-24 11:37:10.546 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:10.548 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:10.548 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:10.548 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.4782ms -2024-06-24 11:37:10.549 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:37:10.550 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:37:10.550 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:37:10.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.2646ms -2024-06-24 11:37:10.550 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.8126ms -2024-06-24 11:37:10.550 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.262ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.4876ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 0.4762ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 1.0155ms -2024-06-24 11:37:10.551 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 0.7876ms -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:37:10.551 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:10.551 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 1.5908ms -2024-06-24 11:37:10.552 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.7475ms -2024-06-24 11:37:10.568 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:37:10.569 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:37:10.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.1965ms -2024-06-24 11:37:10.583 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:37:10.585 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:37:10.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.7731ms -2024-06-24 11:37:10.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:37:10.592 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:37:10.592 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:37:10.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.5006ms -2024-06-24 11:37:10.593 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:37:10.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.5566ms -2024-06-24 11:37:10.678 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:37:10.679 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.679 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.680 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.680 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.680 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.680 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:37:10.680 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 2.2137ms -2024-06-24 11:37:10.681 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.681 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.681 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.3613ms -2024-06-24 11:37:10.704 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.704 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.705 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.705 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.705 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.705 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.705 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.705 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.4259ms -2024-06-24 11:37:10.791 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=QwlzCMZjbN2YyI-FnhK_Qg - null null -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.791 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.791 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.791 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.792 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:10.792 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:37:10.793 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:37:10.793 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.4912ms -2024-06-24 11:37:10.801 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.801 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:10.802 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:10.803 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.804 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:10.808 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:10.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:10.809 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:10.809 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:10.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.5629ms -2024-06-24 11:37:10.809 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:10.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.5083ms -2024-06-24 11:37:10.809 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:10.809 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 0.623ms -2024-06-24 11:37:10.813 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.813 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:10.813 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:10.814 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 404 0 null 1.3493ms -2024-06-24 11:37:10.814 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/images/getting-started/bg-01.png, Response status code: 404 -2024-06-24 11:37:10.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.821 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:37:10.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.6046ms -2024-06-24 11:37:10.822 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:37:10.822 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.2768ms -2024-06-24 11:37:10.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:37:10.829 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:37:10.829 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.3605ms -2024-06-24 11:37:10.829 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:37:10.829 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.5926ms -2024-06-24 11:37:23.319 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.320 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.320 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.320 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.321 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:37:23.322 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.322 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.324 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.324 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.331 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundary99vz8ctA2rc742w1 359 -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.331 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.331 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.331 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.332 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.331 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:37:23.333 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 13.4397ms -2024-06-24 11:37:23.333 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.333 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.1091ms -2024-06-24 11:37:23.333 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.333 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=QwlzCMZjbN2YyI-FnhK_Qg - 200 null null 12542.4949ms -2024-06-24 11:37:23.343 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:37:23.346 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:37:23.346 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 2.6322ms -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:37:23.349 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:37:23.349 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.3425ms -2024-06-24 11:37:23.350 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:37:23.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.8749ms -2024-06-24 11:37:23.350 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:37:23.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.4323ms -2024-06-24 11:37:23.350 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:37:23.350 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.1829ms -2024-06-24 11:37:23.350 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:37:23.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:37:23.351 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:37:23.351 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:37:23.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.2698ms -2024-06-24 11:37:23.351 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:37:23.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.2603ms -2024-06-24 11:37:23.351 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:37:23.351 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.5521ms -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:37:23.352 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:37:23.352 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.4006ms -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.5031ms -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:37:23.352 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:23.353 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.2067ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.6977ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.4047ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.459ms -2024-06-24 11:37:23.353 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.3109ms -2024-06-24 11:37:23.353 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:37:23.353 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 1.4856ms -2024-06-24 11:37:23.354 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.7027ms -2024-06-24 11:37:23.354 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 1.1264ms -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:37:23.354 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.2372ms -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:23.354 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:37:23.354 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 1.1444ms -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:23.354 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.17ms -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.4609ms -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 0.6209ms -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 0.4928ms -2024-06-24 11:37:23.355 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:37:23.355 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:37:23.355 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.2052ms -2024-06-24 11:37:23.356 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 0.8658ms -2024-06-24 11:37:23.356 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.677ms -2024-06-24 11:37:23.356 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 0.9528ms -2024-06-24 11:37:23.356 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:37:23.356 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 1.9118ms -2024-06-24 11:37:23.360 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:37:23.360 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 6.6564ms -2024-06-24 11:37:23.371 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:37:23.371 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:37:23.371 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.518ms -2024-06-24 11:37:23.372 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:37:23.372 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:37:23.372 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:37:23.372 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.5697ms -2024-06-24 11:37:23.373 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:37:23.373 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 0.6775ms -2024-06-24 11:37:23.390 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:37:23.391 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:37:23.391 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 1.8396ms -2024-06-24 11:37:23.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:37:23.472 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.472 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.472 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.472 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.473 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.473 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.473 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.1012ms -2024-06-24 11:37:23.473 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:37:23.473 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.4578ms -2024-06-24 11:37:23.487 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:37:23.487 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.487 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.488 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.488 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.488 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.489 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.490 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.490 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2.5055ms -2024-06-24 11:37:23.575 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=NL_fh8Aj_IFatji-gPRZ3A - null null -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.575 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.575 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:37:23.575 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:37:23.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:37:23.576 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:37:23.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.4052ms -2024-06-24 11:37:23.576 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:37:23.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.583 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:37:23.583 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:37:23.583 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:37:23.584 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.584 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:37:23.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.3582ms -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 0.4901ms -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.4702ms -2024-06-24 11:37:23.590 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:37:23.590 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 0.4034ms -2024-06-24 11:37:23.599 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.600 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:37:23.600 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.3832ms -2024-06-24 11:37:23.601 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.601 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:37:23.601 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.3269ms -2024-06-24 11:37:23.603 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.603 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:37:23.604 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:37:23.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.3434ms -2024-06-24 11:37:23.604 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:37:23.604 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.6134ms -2024-06-24 11:38:20.150 +03:00 [INF] Application is shutting down... -2024-06-24 11:38:20.150 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:38:20.150 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=NL_fh8Aj_IFatji-gPRZ3A - 200 null null 56575.0274ms -2024-06-24 11:38:20.150 +03:00 [INF] Connection id "0HN4K52APKE2Q", Request id "0HN4K52APKE2Q:0000018F": the application completed without reading the entire request body. -2024-06-24 11:38:20.155 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:38:28.954 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:38:28.955 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:38:28.955 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:38:28.956 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:38:29.008 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:38:29.026 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:38:29.182 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:38:29.182 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:38:29.222 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:38:29.222 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:38:29.222 +03:00 [INF] Hosting environment: Development -2024-06-24 11:38:29.222 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:38:46.741 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:38:46.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:46.918 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:46.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:38:46.919 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:38:46.920 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:46.925 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:38:46.927 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:38:46.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:38:46.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:46.928 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:46.928 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:38:47.016 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:38:47.019 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:38:47.020 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 279.3983ms -2024-06-24 11:38:47.022 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=NoWjottvLY2EN4TrG6G3kw - null null -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:47.024 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:47.024 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:38:47.025 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:38:47.026 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:04.062 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:39:05.282 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.283 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.283 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.283 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.286 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:39:05.374 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.375 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.376 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.393 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.394 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.395 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.422 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.424 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.470 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:39:05.472 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryr7NVuqAupPAScpYU 359 -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.473 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.473 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.473 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.474 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.475 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1413.1644ms -2024-06-24 11:39:05.476 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.476 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=NoWjottvLY2EN4TrG6G3kw - 200 null null 18453.3566ms -2024-06-24 11:39:05.479 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.479 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.874ms -2024-06-24 11:39:05.485 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:39:05.489 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:39:05.491 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.6509ms -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.6455ms -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.1371ms -2024-06-24 11:39:05.492 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:39:05.492 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 1.2131ms -2024-06-24 11:39:05.492 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:39:05.492 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 2.0335ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.924ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.8939ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.4779ms -2024-06-24 11:39:05.493 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:39:05.493 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 2.0243ms -2024-06-24 11:39:05.493 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.943ms -2024-06-24 11:39:05.493 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:39:05.494 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:39:05.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.8985ms -2024-06-24 11:39:05.494 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:39:05.494 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 2.5528ms -2024-06-24 11:39:05.494 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:39:05.495 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:39:05.495 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.0664ms -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:39:05.495 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:39:05.495 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.5019ms -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:39:05.495 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:39:05.495 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:39:05.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.4119ms -2024-06-24 11:39:05.496 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:39:05.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 608 text/css 0.6177ms -2024-06-24 11:39:05.496 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:39:05.496 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6206ms -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:39:05.496 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:39:05.497 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:39:05.497 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.824ms -2024-06-24 11:39:05.498 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:39:05.498 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 1.7875ms -2024-06-24 11:39:05.507 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:39:05.507 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 11.3943ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 12.212ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 11.4206ms -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 12.0319ms -2024-06-24 11:39:05.508 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 11.3933ms -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 12.161ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 12.3852ms -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 14.8637ms -2024-06-24 11:39:05.508 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:39:05.508 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 11.7739ms -2024-06-24 11:39:05.509 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:39:05.509 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 12.3849ms -2024-06-24 11:39:05.509 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:39:05.509 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 12.8755ms -2024-06-24 11:39:05.515 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:39:05.516 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:39:05.516 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.9766ms -2024-06-24 11:39:05.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:39:05.516 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:39:05.517 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:39:05.517 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.9692ms -2024-06-24 11:39:05.517 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:39:05.517 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.0277ms -2024-06-24 11:39:05.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:39:05.537 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:39:05.537 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 3.7059ms -2024-06-24 11:39:05.604 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:39:05.608 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:39:05.608 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.8684ms -2024-06-24 11:39:05.650 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.651 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.652 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.652 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.652 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.653 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.655 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.655 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 4.6575ms -2024-06-24 11:39:05.686 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:39:05.687 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.687 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.688 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.688 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.688 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.688 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:39:05.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.5838ms -2024-06-24 11:39:05.690 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.690 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.690 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 4.2129ms -2024-06-24 11:39:05.694 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=F3jnMYE1MvGN4YZdWzoUjA - null null -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.695 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.695 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:05.695 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:05.697 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:05.769 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.770 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.771 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.775 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:05.776 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:05.777 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:05.784 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.786 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:05.797 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:39:05.798 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:39:05.798 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:39:05.798 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.4654ms -2024-06-24 11:39:05.798 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:39:05.799 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:39:05.800 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:39:05.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.8917ms -2024-06-24 11:39:05.800 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:39:05.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.7297ms -2024-06-24 11:39:05.800 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:39:05.800 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.6023ms -2024-06-24 11:39:05.864 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.865 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:39:05.865 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.9424ms -2024-06-24 11:39:05.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.866 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:39:05.866 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.5435ms -2024-06-24 11:39:05.868 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.869 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:39:05.869 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:39:05.869 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.5378ms -2024-06-24 11:39:05.869 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:39:05.869 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.8263ms -2024-06-24 11:39:35.534 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.534 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.535 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.535 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.535 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.535 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:39:35.542 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.543 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.543 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.545 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.547 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.547 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.549 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:39:35.549 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 15.7228ms -2024-06-24 11:39:35.553 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryQbGb68mUymVBEAB0 359 -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.553 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.554 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.554 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.554 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.555 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.555 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.555 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=F3jnMYE1MvGN4YZdWzoUjA - 200 null null 29861.2372ms -2024-06-24 11:39:35.560 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.560 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 7.7532ms -2024-06-24 11:39:35.567 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:39:35.569 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:39:35.569 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.8811ms -2024-06-24 11:39:35.574 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:39:35.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:39:35.575 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:39:35.575 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:39:35.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:39:35.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.5083ms -2024-06-24 11:39:35.576 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:39:35.576 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:39:35.576 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.0413ms -2024-06-24 11:39:35.576 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:39:35.577 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.8921ms -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.6616ms -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:39:35.577 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.7831ms -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:39:35.577 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7712ms -2024-06-24 11:39:35.578 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 2.0646ms -2024-06-24 11:39:35.578 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.9828ms -2024-06-24 11:39:35.578 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:39:35.578 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:39:35.578 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.3447ms -2024-06-24 11:39:35.580 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:39:35.580 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:39:35.580 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.6281ms -2024-06-24 11:39:35.580 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 3.0752ms -2024-06-24 11:39:35.581 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:39:35.581 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.2243ms -2024-06-24 11:39:35.583 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:39:35.583 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 4.3042ms -2024-06-24 11:39:35.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:39:35.584 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:39:35.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:39:35.585 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:39:35.585 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:39:35.585 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.9514ms -2024-06-24 11:39:35.586 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:39:35.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.2835ms -2024-06-24 11:39:35.586 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:39:35.586 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.8367ms -2024-06-24 11:39:35.586 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:39:35.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:39:35.587 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:39:35.587 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.8216ms -2024-06-24 11:39:35.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:39:35.587 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:39:35.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:39:35.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:39:35.588 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:39:35.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.6557ms -2024-06-24 11:39:35.589 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:39:35.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.7091ms -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:39:35.589 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:39:35.589 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 2.7178ms -2024-06-24 11:39:35.590 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 1.5642ms -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 3.6293ms -2024-06-24 11:39:35.591 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 2.3682ms -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 2.5492ms -2024-06-24 11:39:35.591 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:39:35.591 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 3.5617ms -2024-06-24 11:39:35.592 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:39:35.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 2.1704ms -2024-06-24 11:39:35.592 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:39:35.592 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 3.0434ms -2024-06-24 11:39:35.593 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:39:35.593 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 4.3833ms -2024-06-24 11:39:35.594 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:39:35.594 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 8.8488ms -2024-06-24 11:39:35.627 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:39:35.627 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:39:35.628 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:39:35.628 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.9186ms -2024-06-24 11:39:35.628 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:39:35.628 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.3317ms -2024-06-24 11:39:35.656 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:39:35.659 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:39:35.659 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.8999ms -2024-06-24 11:39:35.677 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:39:35.679 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:39:35.679 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.3678ms -2024-06-24 11:39:35.807 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.807 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.807 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.807 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.808 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.808 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.808 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 1.2737ms -2024-06-24 11:39:35.812 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.813 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.813 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.813 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.814 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.814 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.814 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.7436ms -2024-06-24 11:39:35.820 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=OIn6w0LK0s3c-RzJJ3E2lg - null null -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.820 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.820 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:39:35.820 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:39:35.821 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:39:35.828 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:39:35.830 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:39:35.830 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.8446ms -2024-06-24 11:39:35.830 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.830 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.830 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.831 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:39:35.831 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:39:35.831 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:39:35.833 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.833 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:39:35.866 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.866 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:39:35.866 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.4835ms -2024-06-24 11:39:35.867 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.867 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:39:35.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.4518ms -2024-06-24 11:39:35.895 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:39:35.896 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:39:35.896 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.5526ms -2024-06-24 11:39:35.896 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.896 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:39:35.897 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:39:35.897 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:39:35.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.8839ms -2024-06-24 11:39:35.897 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.9531ms -2024-06-24 11:40:09.702 +03:00 [INF] Application is shutting down... -2024-06-24 11:40:09.702 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:09.702 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=OIn6w0LK0s3c-RzJJ3E2lg - 200 null null 33882.6289ms -2024-06-24 11:40:09.703 +03:00 [INF] Connection id "0HN4K54845G7D", Request id "0HN4K54845G7D:000000B3": the application completed without reading the entire request body. -2024-06-24 11:40:09.707 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:40:33.596 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:40:33.597 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:40:33.597 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:40:33.598 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:40:33.651 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:40:33.667 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:40:33.814 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:40:33.814 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:40:33.858 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:40:33.858 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:40:33.859 +03:00 [INF] Hosting environment: Development -2024-06-24 11:40:33.859 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:40:35.107 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:40:35.277 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.282 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.283 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:35.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:35.284 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.289 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:35.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:35.291 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.292 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.292 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:35.382 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:35.384 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:35.387 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 280.2527ms -2024-06-24 11:40:35.388 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=W8M5-WXbLEsblYVE6wsQwQ - null null -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:35.389 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:35.390 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:35.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:38.548 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:39.787 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:39.787 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:39.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:39.788 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:39.788 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:39.791 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:40:39.884 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:39.885 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:39.886 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:39.903 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:39.903 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:39.904 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:39.931 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:39.933 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:39.981 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:40:39.986 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1437.874ms -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - null null -2024-06-24 11:40:40.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - null null -2024-06-24 11:40:40.008 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:40:40.008 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:40:40.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:40:40.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:40:40.009 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:40:40.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.010 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.011 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.012 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.012 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/img-community.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/bg-01.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/img-blog.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /images/getting-started/img-support.png was not modified -2024-06-24 11:40:40.012 +03:00 [INF] The file /blazor-global-styles.css was not modified -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 304 null image/png 3.6447ms -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 304 null text/css 4.3056ms -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 304 null image/png 4.2821ms -2024-06-24 11:40:40.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 304 null image/png 3.7414ms -2024-06-24 11:40:40.013 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 304 null image/png 3.6728ms -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - 404 0 null 7.9168ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/discord.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - 404 0 null 8.105ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/youtube.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - 404 0 null 8.2998ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - 404 0 null 8.3654ms -2024-06-24 11:40:40.015 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/instagram.svg, Response status code: 404 -2024-06-24 11:40:40.015 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - 404 0 null 8.9043ms -2024-06-24 11:40:40.016 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/book.png, Response status code: 404 -2024-06-24 11:40:40.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:40:40.032 +03:00 [INF] The file /images/logo/leptonx/logo-light.png was not modified -2024-06-24 11:40:40.032 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 304 null image/png 0.4993ms -2024-06-24 11:40:40.097 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.098 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.098 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.098 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.099 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.100 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.100 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.7413ms -2024-06-24 11:40:40.126 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.126 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.127 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.127 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.127 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.128 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.129 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.129 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2.9611ms -2024-06-24 11:40:40.130 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=n275ub7P2oiPy_QDAW1izg - null null -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.131 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.131 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.132 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.132 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.133 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:40:40.177 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:40.178 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:40.178 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:40.179 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:40:40.180 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:40:40.181 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:40:40.183 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:40.184 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:40:40.192 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - null null -2024-06-24 11:40:40.193 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - null null -2024-06-24 11:40:40.193 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - null null -2024-06-24 11:40:40.193 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - null null -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - null null -2024-06-24 11:40:40.194 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.194 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.194 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.194 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.194 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:40:40.195 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.195 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:40:40.195 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:40:40.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/book.png - 404 0 null 3.5246ms -2024-06-24 11:40:40.196 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/book.png, Response status code: 404 -2024-06-24 11:40:40.196 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/discord.svg - 404 0 null 3.6085ms -2024-06-24 11:40:40.196 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/discord.svg, Response status code: 404 -2024-06-24 11:40:40.197 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg - 404 0 null 3.9888ms -2024-06-24 11:40:40.197 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/stack-overflow.svg, Response status code: 404 -2024-06-24 11:40:40.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/instagram.svg - 404 0 null 4.3782ms -2024-06-24 11:40:40.198 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/instagram.svg, Response status code: 404 -2024-06-24 11:40:40.198 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/assets/img/getting-started/youtube.svg - 404 0 null 5.53ms -2024-06-24 11:40:40.198 +03:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:44300/assets/img/getting-started/youtube.svg, Response status code: 404 -2024-06-24 11:40:45.925 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:40:45.927 +03:00 [INF] The file /blazor-global-styles.css was not modified -2024-06-24 11:40:45.927 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 304 null text/css 1.5146ms -2024-06-24 11:40:46.116 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:40:46.121 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:40:46.122 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.7827ms -2024-06-24 11:40:46.763 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:40:46.765 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:40:46.765 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 1.8723ms -2024-06-24 11:42:27.907 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - null null -2024-06-24 11:42:27.908 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light-thumbnail.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light-thumbnail.png' -2024-06-24 11:42:27.908 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light-thumbnail.png - 200 9230 image/png 0.9607ms -2024-06-24 11:42:28.260 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:42:28.261 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:42:28.261 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.7513ms -2024-06-24 11:46:16.028 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:16.028 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=n275ub7P2oiPy_QDAW1izg - 200 null null 335897.455ms -2024-06-24 11:46:16.028 +03:00 [INF] Connection id "0HN4K558DJ31M", Request id "0HN4K558DJ31M:00000021": the application completed without reading the entire request body. -2024-06-24 11:46:16.028 +03:00 [INF] Application is shutting down... -2024-06-24 11:46:16.032 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:16.032 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=W8M5-WXbLEsblYVE6wsQwQ - 200 null null 340644.6114ms -2024-06-24 11:46:16.033 +03:00 [INF] Connection id "0HN4K558DJ31M", Request id "0HN4K558DJ31M:00000003": the application completed without reading the entire request body. -2024-06-24 11:46:16.034 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:46:25.302 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:46:25.303 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:46:25.303 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:46:25.359 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:46:25.375 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:46:25.516 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:46:25.516 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:46:25.556 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:46:25.556 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:46:25.556 +03:00 [INF] Hosting environment: Development -2024-06-24 11:46:25.556 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:46:37.438 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:46:38.251 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryad6Mrt9wOuZwdh9a 359 -2024-06-24 11:46:38.272 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.278 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.279 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:38.280 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:38.280 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.285 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:38.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.287 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:38.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:38.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:38.288 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:38.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.289 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.289 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:38.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.396 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.398 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 147.4492ms -2024-06-24 11:46:38.797 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.798 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.798 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.798 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:38.808 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:46:38.893 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:38.894 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:38.895 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:38.913 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:38.913 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:38.914 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:38.940 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:38.942 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:38.991 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:46:38.994 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundarytUqoQ6NTPXGecvR2 359 -2024-06-24 11:46:38.995 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.995 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.996 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.996 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:38.996 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:38.997 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.997 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:38.997 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 3.7025ms -2024-06-24 11:46:38.998 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1560.6584ms -2024-06-24 11:46:39.011 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:46:39.018 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:46:39.018 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.4037ms -2024-06-24 11:46:39.023 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:46:39.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:46:39.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:46:39.024 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:46:39.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:46:39.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:46:39.025 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 2.5232ms -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:46:39.026 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 3.3304ms -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 4.4011ms -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 2.3524ms -2024-06-24 11:46:39.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 2.6728ms -2024-06-24 11:46:39.028 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:46:39.028 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 4.5387ms -2024-06-24 11:46:39.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:46:39.028 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 5.2764ms -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 2.9863ms -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 4.7787ms -2024-06-24 11:46:39.029 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:46:39.029 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.3273ms -2024-06-24 11:46:39.029 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:46:39.030 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:46:39.030 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:46:39.030 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 3.7344ms -2024-06-24 11:46:39.030 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 3.7407ms -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:46:39.030 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:46:39.031 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:46:39.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:46:39.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:46:39.032 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:46:39.033 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:46:39.033 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:46:39.034 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:46:39.034 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 6.0895ms -2024-06-24 11:46:39.035 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:46:39.035 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:46:39.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 6.3474ms -2024-06-24 11:46:39.035 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:46:39.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 6.6652ms -2024-06-24 11:46:39.035 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 4.9462ms -2024-06-24 11:46:39.036 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 7.0549ms -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 5.0105ms -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 6.1433ms -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:46:39.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 5.1659ms -2024-06-24 11:46:39.036 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 5.9403ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 8.5971ms -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 3.899ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 5.377ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:46:39.037 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 5.1925ms -2024-06-24 11:46:39.037 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:46:39.038 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 6.7446ms -2024-06-24 11:46:39.038 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:46:39.038 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:46:39.038 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 6.166ms -2024-06-24 11:46:39.038 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 7.2279ms -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 10.671ms -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 9.4494ms -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 13.1241ms -2024-06-24 11:46:39.042 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:46:39.042 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 13.1578ms -2024-06-24 11:46:39.043 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:46:39.043 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 13.3664ms -2024-06-24 11:46:39.043 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:46:39.043 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 13.2198ms -2024-06-24 11:46:39.046 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:46:39.046 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 15.7532ms -2024-06-24 11:46:39.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:46:39.101 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:46:39.101 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 3.5422ms -2024-06-24 11:46:39.105 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:46:39.107 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:46:39.107 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 2.0995ms -2024-06-24 11:46:39.120 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:46:39.121 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:46:39.121 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.6499ms -2024-06-24 11:46:39.122 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:46:39.126 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:46:39.127 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 4.3898ms -2024-06-24 11:46:39.238 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:46:39.241 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:46:39.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.3322ms -2024-06-24 11:46:39.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:46:39.242 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.243 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.243 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.243 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:39.244 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.245 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.4771ms -2024-06-24 11:46:39.250 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:46:39.251 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:39.252 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.252 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:39.253 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:39.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:39.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.255 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.255 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:39.260 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.263 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.263 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 12.5144ms -2024-06-24 11:46:39.267 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=g1Vja2US5v59Ch8GuwNnJA - null null -2024-06-24 11:46:39.267 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.268 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.268 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:46:39.268 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:46:39.270 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:46:39.334 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:39.334 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:39.335 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:39.336 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:46:39.336 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:46:39.337 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:46:39.339 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:39.340 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:46:39.361 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.362 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:46:39.362 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.9921ms -2024-06-24 11:46:39.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.365 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:46:39.365 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:46:39.365 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.8055ms -2024-06-24 11:46:39.366 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:46:39.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.9545ms -2024-06-24 11:46:39.366 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:46:39.366 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.4307ms -2024-06-24 11:46:39.414 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:46:39.415 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:46:39.415 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.9766ms -2024-06-24 11:47:16.888 +03:00 [INF] Application is shutting down... -2024-06-24 11:47:16.888 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:16.888 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=g1Vja2US5v59Ch8GuwNnJA - 200 null null 37621.2134ms -2024-06-24 11:47:16.889 +03:00 [INF] Connection id "0HN4K58KD2LIJ", Request id "0HN4K58KD2LIJ:0000005D": the application completed without reading the entire request body. -2024-06-24 11:47:16.893 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:47:25.649 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:47:25.650 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:47:25.650 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:47:25.707 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:47:25.724 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:47:25.869 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:47:25.869 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:47:25.909 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:47:25.909 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:47:25.909 +03:00 [INF] Hosting environment: Development -2024-06-24 11:47:25.909 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:47:29.021 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:47:30.384 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.391 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.392 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.398 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.400 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.401 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.402 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.502 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:47:30.585 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.586 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.587 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.604 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.611 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.613 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.645 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:30.647 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:30.692 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:47:30.695 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundarytkFBptvoJS1V49l5 359 -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.696 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.697 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.697 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.697 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.698 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1678.0006ms -2024-06-24 11:47:30.699 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.703 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.703 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 8.2612ms -2024-06-24 11:47:30.711 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:47:30.718 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:47:30.718 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 7.4098ms -2024-06-24 11:47:30.720 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:47:30.722 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:47:30.722 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:47:30.723 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.395ms -2024-06-24 11:47:30.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:47:30.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:47:30.723 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:47:30.723 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.8328ms -2024-06-24 11:47:30.724 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:47:30.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.2433ms -2024-06-24 11:47:30.724 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:47:30.724 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.4179ms -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:47:30.724 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:47:30.725 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:47:30.726 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:47:30.728 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:47:30.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 3.509ms -2024-06-24 11:47:30.728 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:47:30.728 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.2108ms -2024-06-24 11:47:30.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:47:30.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:47:30.729 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 4.7685ms -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:47:30.729 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:47:30.729 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 4.9734ms -2024-06-24 11:47:30.729 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 3.6097ms -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:47:30.730 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 4.402ms -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 5.8343ms -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 5.4178ms -2024-06-24 11:47:30.730 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:47:30.730 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:47:30.730 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 5.765ms -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:47:30.731 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 6.4378ms -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:47:30.731 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:47:30.731 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 5.8065ms -2024-06-24 11:47:30.732 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:47:30.732 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:47:30.732 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 3.8477ms -2024-06-24 11:47:30.732 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 6.2358ms -2024-06-24 11:47:30.732 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:47:30.733 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 7.7713ms -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 4.1169ms -2024-06-24 11:47:30.733 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:47:30.733 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 4.5155ms -2024-06-24 11:47:30.733 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 6.8579ms -2024-06-24 11:47:30.734 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:47:30.734 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 5.2999ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 4.7296ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 4.1265ms -2024-06-24 11:47:30.735 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 4.7284ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 3.9506ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 4.7967ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 4.4816ms -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:47:30.735 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 6.0448ms -2024-06-24 11:47:30.735 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 4.3668ms -2024-06-24 11:47:30.756 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:47:30.756 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 24.8871ms -2024-06-24 11:47:30.757 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:47:30.757 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:47:30.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 26.2119ms -2024-06-24 11:47:30.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 26.7912ms -2024-06-24 11:47:30.757 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:47:30.757 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 28.199ms -2024-06-24 11:47:30.758 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:47:30.758 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 28.1683ms -2024-06-24 11:47:30.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:47:30.774 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:47:30.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.3144ms -2024-06-24 11:47:30.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:47:30.775 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:47:30.780 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:47:30.780 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 5.1235ms -2024-06-24 11:47:30.781 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:47:30.781 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 6.3012ms -2024-06-24 11:47:30.812 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:47:30.815 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:47:30.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 3.8197ms -2024-06-24 11:47:30.858 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:47:30.861 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:47:30.861 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 2.6424ms -2024-06-24 11:47:30.863 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.865 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.866 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.866 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.866 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.867 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.868 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.868 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.2031ms -2024-06-24 11:47:30.875 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:47:30.875 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.875 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.876 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.876 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.876 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.877 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.878 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.878 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 3.8267ms -2024-06-24 11:47:30.881 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=8ffbYW8KaiKHMkk1dW6fmQ - null null -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.881 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.881 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:47:30.881 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:47:30.882 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:47:30.962 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.963 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.964 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.965 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:47:30.965 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:47:30.966 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:47:30.969 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:30.969 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:47:31.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:47:31.044 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.045 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:47:31.045 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:47:31.045 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.9562ms -2024-06-24 11:47:31.045 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.0462ms -2024-06-24 11:47:31.048 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.049 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:47:31.049 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:47:31.049 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.5976ms -2024-06-24 11:47:31.049 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:47:31.049 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.3307ms -2024-06-24 11:47:31.050 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:47:31.050 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.6796ms -2024-06-24 11:49:45.912 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:45.913 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.914 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.914 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.914 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:45.916 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:49:45.921 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:45.921 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:45.922 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:45.924 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:45.925 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:45.925 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:45.929 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:45.930 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:45.932 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:49:45.932 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 20.5942ms -2024-06-24 11:49:45.938 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryIMcooJkZuaVPkKxy 359 -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.939 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.939 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:45.939 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:45.941 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:45.946 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:45.946 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=8ffbYW8KaiKHMkk1dW6fmQ - 200 null null 135065.569ms -2024-06-24 11:49:45.949 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:45.949 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 10.9428ms -2024-06-24 11:49:45.953 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:49:45.956 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:49:45.956 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 3.2071ms -2024-06-24 11:49:45.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:49:45.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:49:45.961 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:49:45.962 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:49:45.962 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.8242ms -2024-06-24 11:49:45.963 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:49:45.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.4281ms -2024-06-24 11:49:45.963 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:49:45.963 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.0052ms -2024-06-24 11:49:45.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:49:45.963 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:49:45.964 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.6501ms -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7301ms -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.9623ms -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.7682ms -2024-06-24 11:49:45.965 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.7301ms -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:49:45.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:49:45.965 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:49:45.965 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.0079ms -2024-06-24 11:49:45.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:49:45.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:49:45.966 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:49:45.966 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:49:45.966 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:49:45.966 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 1.7978ms -2024-06-24 11:49:45.966 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 1.6645ms -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:49:45.967 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:49:45.967 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:49:45.967 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 2.5563ms -2024-06-24 11:49:45.968 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 2.3076ms -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:49:45.968 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:49:45.969 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:49:45.970 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:49:45.970 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 5.1131ms -2024-06-24 11:49:45.973 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:49:45.973 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 6.5029ms -2024-06-24 11:49:45.974 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:49:45.974 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:49:45.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 7.1832ms -2024-06-24 11:49:45.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 7.7917ms -2024-06-24 11:49:45.974 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:49:45.974 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 8.027ms -2024-06-24 11:49:45.975 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:49:45.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 8.8506ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 7.4184ms -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 7.2857ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 8.6406ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 8.9065ms -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 9.4732ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 8.0907ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 7.0982ms -2024-06-24 11:49:45.976 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:49:45.976 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 7.9777ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 7.2502ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 8.322ms -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 9.0857ms -2024-06-24 11:49:45.977 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 8.7789ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 10.2379ms -2024-06-24 11:49:45.977 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:49:45.977 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 10.2779ms -2024-06-24 11:49:45.978 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:49:45.978 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 9.9527ms -2024-06-24 11:49:45.978 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:49:45.978 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 10.6803ms -2024-06-24 11:49:46.007 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:49:46.008 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:49:46.009 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.3203ms -2024-06-24 11:49:46.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:49:46.010 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:49:46.012 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:49:46.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.5983ms -2024-06-24 11:49:46.012 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:49:46.012 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.9804ms -2024-06-24 11:49:46.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:49:46.039 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:49:46.039 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 4.4062ms -2024-06-24 11:49:46.092 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:49:46.096 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:49:46.096 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.6909ms -2024-06-24 11:49:46.098 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:46.099 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.100 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.100 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.100 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:46.102 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.102 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.102 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.9233ms -2024-06-24 11:49:46.108 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.109 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.109 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.109 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:46.111 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.112 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.112 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 3.4555ms -2024-06-24 11:49:46.115 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=LRIxyzI-8v_W3gF4203FGg - null null -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:49:46.115 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.116 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.116 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:49:46.116 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:49:46.118 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:49:46.133 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:46.134 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:46.134 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:46.135 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:49:46.136 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:49:46.136 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:49:46.139 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:46.140 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:49:46.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.174 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.175 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:49:46.175 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 5.8915ms -2024-06-24 11:49:46.175 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:49:46.175 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 1.1563ms -2024-06-24 11:49:46.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.182 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:49:46.184 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:49:46.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 2.0722ms -2024-06-24 11:49:46.184 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:49:46.184 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 2.8289ms -2024-06-24 11:49:46.310 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:49:46.311 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:49:46.311 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.8401ms -2024-06-24 11:50:46.192 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:50:46.192 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.193 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.193 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.193 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.194 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:50:46.197 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.197 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.197 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.198 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.199 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.199 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.201 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.202 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.203 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:50:46.203 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 11.2587ms -2024-06-24 11:50:46.209 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundary3gVjSpfArGADXPdX 359 -2024-06-24 11:50:46.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.210 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.210 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.210 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=LRIxyzI-8v_W3gF4203FGg - 200 null null 60095.1591ms -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.210 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.211 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.211 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.4344ms -2024-06-24 11:50:46.230 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:50:46.232 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:50:46.232 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 2.5778ms -2024-06-24 11:50:46.238 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:50:46.239 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:50:46.239 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.2031ms -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:50:46.240 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:50:46.240 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.5642ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.8923ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.4471ms -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.8101ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:50:46.241 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.4963ms -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:50:46.241 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7079ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.2963ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:50:46.242 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.666ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.5723ms -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:50:46.242 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.5706ms -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 0.7855ms -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:50:46.242 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.543ms -2024-06-24 11:50:46.242 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.3944ms -2024-06-24 11:50:46.243 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:50:46.243 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:50:46.243 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 744 text/css 0.2891ms -2024-06-24 11:50:46.243 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:50:46.243 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 0.4811ms -2024-06-24 11:50:46.243 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:50:46.243 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6233ms -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 2.2395ms -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:50:46.244 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:50:46.244 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.7134ms -2024-06-24 11:50:46.244 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.7428ms -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 0.8574ms -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.7187ms -2024-06-24 11:50:46.245 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:50:46.245 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.0308ms -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:50:46.245 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.327ms -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.3048ms -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.4366ms -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.3874ms -2024-06-24 11:50:46.246 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:50:46.246 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.4917ms -2024-06-24 11:50:46.264 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:50:46.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 19.1175ms -2024-06-24 11:50:46.264 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:50:46.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 18.3768ms -2024-06-24 11:50:46.264 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:50:46.264 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 19.1537ms -2024-06-24 11:50:46.265 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:50:46.265 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 19.3194ms -2024-06-24 11:50:46.265 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:50:46.265 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 19.9284ms -2024-06-24 11:50:46.265 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:50:46.265 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 20.7469ms -2024-06-24 11:50:46.268 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:50:46.268 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:50:46.268 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 23.9284ms -2024-06-24 11:50:46.270 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:50:46.270 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.7059ms -2024-06-24 11:50:46.284 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:50:46.286 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:50:46.286 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 2.1298ms -2024-06-24 11:50:46.286 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:50:46.287 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:50:46.287 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.0399ms -2024-06-24 11:50:46.306 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:50:46.307 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:50:46.307 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.6771ms -2024-06-24 11:50:46.398 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:50:46.400 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:50:46.400 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 2.0339ms -2024-06-24 11:50:46.404 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:50:46.404 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.407 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.408 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.408 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.408 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.409 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.409 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.409 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 4.968ms -2024-06-24 11:50:46.417 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.417 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.417 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.417 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.418 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.418 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.418 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.3525ms -2024-06-24 11:50:46.420 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=XdFwfM9h7z7ty3NcQaN_1g - null null -2024-06-24 11:50:46.420 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.420 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.421 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.421 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:50:46.421 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:50:46.422 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:50:46.432 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.432 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.432 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.433 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:50:46.434 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:50:46.434 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:50:46.435 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.436 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:50:46.451 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.453 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:50:46.453 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 1.924ms -2024-06-24 11:50:46.455 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.457 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:50:46.458 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 2.7791ms -2024-06-24 11:50:46.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.459 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:50:46.460 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:50:46.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.5742ms -2024-06-24 11:50:46.460 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:50:46.460 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.867ms -2024-06-24 11:50:46.594 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:50:46.594 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:50:46.594 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.5578ms -2024-06-24 11:51:57.922 +03:00 [INF] Application is shutting down... -2024-06-24 11:51:57.926 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:51:57.926 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=XdFwfM9h7z7ty3NcQaN_1g - 200 null null 71505.9639ms -2024-06-24 11:51:57.926 +03:00 [INF] Connection id "0HN4K593P070C", Request id "0HN4K593P070C:00000127": the application completed without reading the entire request body. -2024-06-24 11:51:57.927 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:52:06.220 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:52:06.221 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:52:06.221 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:52:06.274 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:52:06.291 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:52:06.443 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:52:06.443 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:52:06.492 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:52:06.492 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:52:06.492 +03:00 [INF] Hosting environment: Development -2024-06-24 11:52:06.492 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:52:22.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:52:24.056 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:52:24.088 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.094 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.095 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.101 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.103 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.104 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.104 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.182 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.202 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.205 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.205 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:52:24.206 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 149.9645ms -2024-06-24 11:52:24.208 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=SFijsVqxWwfk18Y5SUk1AQ - null null -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.209 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.210 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.210 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.210 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.211 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.295 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.296 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.297 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.313 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.314 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.315 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.341 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.343 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.389 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryvqb7lA8uvQnpSxsm 359 -2024-06-24 11:52:24.390 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.390 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.390 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.391 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.391 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.392 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.392 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.393 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=SFijsVqxWwfk18Y5SUk1AQ - 200 null null 184.3103ms -2024-06-24 11:52:24.395 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.395 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.0931ms -2024-06-24 11:52:24.397 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1602.6515ms -2024-06-24 11:52:24.408 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:52:24.414 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:52:24.414 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 6.2293ms -2024-06-24 11:52:24.415 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:52:24.417 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:52:24.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:52:24.417 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.0005ms -2024-06-24 11:52:24.417 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:52:24.418 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:52:24.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:52:24.418 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.8782ms -2024-06-24 11:52:24.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:52:24.418 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:52:24.418 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.3882ms -2024-06-24 11:52:24.418 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:52:24.419 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:52:24.419 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.7579ms -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.1978ms -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.7308ms -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:52:24.419 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.7241ms -2024-06-24 11:52:24.419 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:52:24.420 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.4019ms -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:52:24.420 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:52:24.421 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 1.0209ms -2024-06-24 11:52:24.421 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.7057ms -2024-06-24 11:52:24.421 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:52:24.421 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:52:24.421 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 1.149ms -2024-06-24 11:52:24.421 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.7942ms -2024-06-24 11:52:24.422 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:52:24.422 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:52:24.422 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 0.8441ms -2024-06-24 11:52:24.422 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.6428ms -2024-06-24 11:52:24.422 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:52:24.422 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 1001 text/css 1.1779ms -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:52:24.423 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:52:24.423 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 0.6628ms -2024-06-24 11:52:24.423 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:52:24.424 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:52:24.425 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 1.0271ms -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:52:24.425 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 2.8312ms -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.7455ms -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 3.1901ms -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 3.0591ms -2024-06-24 11:52:24.426 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:52:24.426 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 1.9047ms -2024-06-24 11:52:24.427 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 1.5506ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 6.0233ms -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 3.269ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 3.3145ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 2.3951ms -2024-06-24 11:52:24.427 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:52:24.427 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 1.7681ms -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 4.0344ms -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:52:24.428 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 2.1975ms -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 2.579ms -2024-06-24 11:52:24.428 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 2.3931ms -2024-06-24 11:52:24.429 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:52:24.429 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 3.1233ms -2024-06-24 11:52:24.430 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:52:24.430 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 4.7964ms -2024-06-24 11:52:24.430 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:52:24.431 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 6.8215ms -2024-06-24 11:52:24.460 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:52:24.460 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:52:24.462 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:52:24.462 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.8767ms -2024-06-24 11:52:24.466 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:52:24.466 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.3946ms -2024-06-24 11:52:24.475 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:52:24.476 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:52:24.476 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 1.2488ms -2024-06-24 11:52:24.482 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:52:24.484 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:52:24.484 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.8131ms -2024-06-24 11:52:24.614 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:52:24.618 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:52:24.618 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 4.0598ms -2024-06-24 11:52:24.619 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:52:24.620 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.620 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.621 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.656 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.657 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.657 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.660 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.662 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.662 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 42.679ms -2024-06-24 11:52:24.669 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:52:24.669 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.670 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.670 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.670 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.673 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.674 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.674 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 5.2444ms -2024-06-24 11:52:24.678 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=y5keVD8R5lMVtlvyJ2IKaQ - null null -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.678 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:52:24.678 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:52:24.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:52:24.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.679 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:52:24.679 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:52:24.679 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:52:24.739 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.740 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.740 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.741 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:52:24.741 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:52:24.742 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:52:24.745 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.746 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:52:24.773 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:52:24.774 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:52:24.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.3114ms -2024-06-24 11:52:24.774 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.4139ms -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:52:24.774 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.402ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.5817ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 1.515ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.4818ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 0.5007ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.7532ms -2024-06-24 11:52:24.775 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:52:24.775 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 2.2698ms -2024-06-24 11:52:24.778 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:52:24.778 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 3.8096ms -2024-06-24 11:52:24.788 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:52:24.790 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:52:24.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 1.6824ms -2024-06-24 11:52:24.791 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.792 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:52:24.792 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.8577ms -2024-06-24 11:52:24.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.795 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.796 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:52:24.796 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 1.3391ms -2024-06-24 11:52:24.797 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:52:24.797 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.742ms -2024-06-24 11:52:24.800 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:52:24.801 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:52:24.801 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.7963ms -2024-06-24 11:55:42.373 +03:00 [INF] Application is shutting down... -2024-06-24 11:55:42.374 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:55:42.374 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=y5keVD8R5lMVtlvyJ2IKaQ - 200 null null 197696.2007ms -2024-06-24 11:55:42.374 +03:00 [INF] Connection id "0HN4K5BRALE8R", Request id "0HN4K5BRALE8R:0000005F": the application completed without reading the entire request body. -2024-06-24 11:55:42.378 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:55:51.041 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:55:51.041 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:55:51.041 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:55:51.042 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:55:51.104 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:55:51.119 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:55:51.267 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:55:51.267 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:55:51.308 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:55:51.308 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:55:51.308 +03:00 [INF] Hosting environment: Development -2024-06-24 11:55:51.308 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:56:08.735 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:56:08.898 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:08.904 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:08.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:08.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:08.905 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:08.910 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:08.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:08.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:08.912 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:08.913 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:08.913 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:09.000 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:09.003 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:09.004 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 269.8661ms -2024-06-24 11:56:09.007 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=ceGQAaQYMKPGV7m7Hmo4AQ - null null -2024-06-24 11:56:09.008 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:09.008 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:09.009 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:09.009 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:09.009 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:09.011 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:14.280 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.467 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.468 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.468 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.468 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.471 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:56:15.562 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.563 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.564 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.581 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.582 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.584 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.611 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:15.613 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:15.662 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:56:15.664 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryoVAfiHazhUMaSM3P 359 -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.665 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.666 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.666 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.666 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.668 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1388.2136ms -2024-06-24 11:56:15.668 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.668 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.668 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=ceGQAaQYMKPGV7m7Hmo4AQ - 200 null null 6661.3051ms -2024-06-24 11:56:15.671 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.672 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 7.3131ms -2024-06-24 11:56:15.681 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:56:15.688 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:56:15.688 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 7.3262ms -2024-06-24 11:56:15.689 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:56:15.691 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:56:15.691 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 2.1935ms -2024-06-24 11:56:15.691 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:56:15.692 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:56:15.692 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.6968ms -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:56:15.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.4057ms -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:56:15.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.3679ms -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:56:15.693 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:56:15.693 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 1.3293ms -2024-06-24 11:56:15.693 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.6309ms -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.6583ms -2024-06-24 11:56:15.694 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:56:15.694 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.8979ms -2024-06-24 11:56:15.694 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:56:15.694 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.9551ms -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:56:15.695 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:56:15.696 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.5943ms -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:56:15.696 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 2.7333ms -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:56:15.696 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:56:15.697 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:56:15.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 3.0285ms -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:56:15.697 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:56:15.697 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 3.2022ms -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:56:15.697 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:56:15.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:56:15.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:56:15.698 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:56:15.699 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:56:15.700 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:56:15.700 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 5.9249ms -2024-06-24 11:56:15.702 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:56:15.702 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 6.4264ms -2024-06-24 11:56:15.702 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:56:15.702 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 7.0673ms -2024-06-24 11:56:15.703 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:56:15.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 7.8943ms -2024-06-24 11:56:15.703 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:56:15.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 7.9014ms -2024-06-24 11:56:15.703 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:56:15.703 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 7.3279ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 7.7475ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 6.58ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 8.709ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 6.2402ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 147 text/css 9.1331ms -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 6.5766ms -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:56:15.704 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:56:15.704 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 6.9621ms -2024-06-24 11:56:15.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 7.482ms -2024-06-24 11:56:15.705 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:56:15.705 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 6.5173ms -2024-06-24 11:56:15.707 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:56:15.707 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 796 text/css 12.2791ms -2024-06-24 11:56:15.707 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:56:15.707 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:56:15.707 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 10.1547ms -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 11.1514ms -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 10.5961ms -2024-06-24 11:56:15.708 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 11.7422ms -2024-06-24 11:56:15.708 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:56:15.708 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 11.8094ms -2024-06-24 11:56:15.710 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:56:15.710 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 14.097ms -2024-06-24 11:56:15.723 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:56:15.725 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:56:15.725 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.66ms -2024-06-24 11:56:15.728 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:56:15.729 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:56:15.729 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.7828ms -2024-06-24 11:56:15.737 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:56:15.742 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:56:15.742 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.025ms -2024-06-24 11:56:15.772 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:56:15.773 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:56:15.773 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.9249ms -2024-06-24 11:56:15.833 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:56:15.835 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:56:15.835 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.836 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:56:15.836 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 3.1007ms -2024-06-24 11:56:15.836 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.836 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.836 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.838 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.839 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.839 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.9251ms -2024-06-24 11:56:15.846 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.846 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.847 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.847 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.847 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.848 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.848 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.848 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 2.7425ms -2024-06-24 11:56:15.851 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=Zl-2Wobm_pevEkglPo2KOA - null null -2024-06-24 11:56:15.851 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.852 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.852 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:56:15.852 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:56:15.853 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:15.931 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.933 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.934 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.936 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:56:15.936 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:56:15.938 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:56:15.946 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:15.950 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:56:16.064 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.064 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:56:16.064 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.6929ms -2024-06-24 11:56:16.066 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:56:16.067 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:56:16.067 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.9135ms -2024-06-24 11:56:16.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.070 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:56:16.071 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:56:16.071 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 1.1797ms -2024-06-24 11:56:16.071 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:56:16.071 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.7647ms -2024-06-24 11:56:16.071 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:56:16.071 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 1.5712ms -2024-06-24 11:56:20.518 +03:00 [INF] Application is shutting down... -2024-06-24 11:56:20.519 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:56:20.519 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=Zl-2Wobm_pevEkglPo2KOA - 200 null null 4667.9504ms -2024-06-24 11:56:20.519 +03:00 [INF] Connection id "0HN4K5DULD5B9", Request id "0HN4K5DULD5B9:0000005F": the application completed without reading the entire request body. -2024-06-24 11:56:20.523 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:59:26.834 +03:00 [INF] Loaded ABP modules: -2024-06-24 11:59:26.835 +03:00 [INF] - MyCompanyName.MyProjectName.MyProjectNameModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Data.AbpDataModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Json.AbpJsonModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Http.AbpHttpModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.UI.AbpUiModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AutoMapper.AbpAutoMapperModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.SqlServer.AbpEntityFrameworkCoreSqlServerModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.EntityFrameworkCore.AbpEntityFrameworkCoreModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.LeptonXLite.AbpAspNetCoreMvcUiLeptonXLiteThemeModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.LeptonXLiteTheme.AbpAspNetCoreComponentsServerLeptonXLiteThemeModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme.AbpAspNetCoreComponentsWebLeptonXLiteThemeModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.Theming.AbpAspNetCoreComponentsWebThemingModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.BlazoriseUI.AbpBlazoriseUIModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Web.AbpAspNetCoreComponentsWebModule -2024-06-24 11:59:26.835 +03:00 [INF] - Volo.Abp.AspNetCore.Components.AbpAspNetCoreComponentsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.Theming.AbpAspNetCoreComponentsServerThemingModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AspNetCore.Components.Server.AbpAspNetCoreComponentsServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Http.Client.AbpHttpClientModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.RemoteServices.AbpRemoteServicesModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.AbpAccountApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.AbpUsersAbstractionModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.AbpUsersDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Emailing.AbpEmailingModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.BackgroundJobs.AbpBackgroundJobsAbstractionsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TextTemplating.Scriban.AbpTextTemplatingScribanModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TextTemplating.AbpTextTemplatingCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.AbpAccountHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebOpenIddictModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Account.Web.AbpAccountWebModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.AspNetCore.AbpIdentityAspNetCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.AbpOpenIddictDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.Identity.AbpPermissionManagementDomainIdentityModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.OpenIddict.AbpPermissionManagementDomainOpenIddictModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.EntityFrameworkCore.AbpIdentityEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Users.EntityFrameworkCore.AbpUsersEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.OpenIddict.EntityFrameworkCore.AbpOpenIddictEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.Blazor.Server.AbpIdentityBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.Identity.Blazor.AbpIdentityBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.AbpPermissionManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.Blazor.Server.AbpPermissionManagementBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.PermissionManagement.EntityFrameworkCore.AbpPermissionManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.AbpTenantManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.EntityFrameworkCore.AbpTenantManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.Server.AbpTenantManagementBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.TenantManagement.Blazor.AbpTenantManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.AbpFeatureManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.AbpSettingManagementBlazorModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.Blazor.Server.AbpFeatureManagementBlazorServerModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.FeatureManagement.EntityFrameworkCore.AbpFeatureManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.EntityFrameworkCore.AbpSettingManagementEntityFrameworkCoreModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule -2024-06-24 11:59:26.836 +03:00 [INF] - Volo.Abp.SettingManagement.Blazor.Server.AbpSettingManagementBlazorServerModule -2024-06-24 11:59:26.893 +03:00 [DBG] Started background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker -2024-06-24 11:59:26.910 +03:00 [INF] User profile is available. Using 'C:\Users\enisn\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2024-06-24 11:59:27.054 +03:00 [INF] Initialized all ABP modules. -2024-06-24 11:59:27.054 +03:00 [INF] Starting MyCompanyName.MyProjectName. -2024-06-24 11:59:27.093 +03:00 [INF] Now listening on: https://localhost:44300 -2024-06-24 11:59:27.093 +03:00 [INF] Application started. Press Ctrl+C to shut down. -2024-06-24 11:59:27.093 +03:00 [INF] Hosting environment: Development -2024-06-24 11:59:27.093 +03:00 [INF] Content root path: C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server -2024-06-24 11:59:39.399 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:59:40.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:40.782 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:40.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:40.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:40.784 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:40.789 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:40.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:40.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:40.792 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:40.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:40.793 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:40.891 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:59:40.973 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:40.974 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:40.975 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:40.993 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:40.994 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:40.994 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.024 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.026 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.075 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:59:41.081 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 1682.2522ms -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:59:41.113 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:59:41.114 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/img-support.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/img-blog.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/bg-01.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/img-community.png was not modified -2024-06-24 11:59:41.117 +03:00 [INF] The file /images/getting-started/book.png was not modified -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 304 null image/png 4.6263ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 304 null image/png 4.7396ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 304 null image/png 4.7429ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 304 null image/png 4.1547ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 304 null image/png 4.0291ms -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/youtube.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/x-white.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/instagram.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/discord.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 304 null image/svg+xml 3.4221ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 304 null image/svg+xml 3.2611ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 304 null image/svg+xml 3.7577ms -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 304 null image/svg+xml 3.9566ms -2024-06-24 11:59:41.118 +03:00 [INF] The file /images/getting-started/stack-overflow.svg was not modified -2024-06-24 11:59:41.118 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 304 null image/svg+xml 3.7112ms -2024-06-24 11:59:41.124 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:59:41.124 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 610 text/css 11.2277ms -2024-06-24 11:59:41.161 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:59:41.162 +03:00 [INF] The file /images/logo/leptonx/logo-light.png was not modified -2024-06-24 11:59:41.162 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 304 null image/png 0.6874ms -2024-06-24 11:59:41.224 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.226 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.226 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.227 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.227 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.229 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.229 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.230 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 5.2209ms -2024-06-24 11:59:41.253 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.257 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.257 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.257 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.258 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.260 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 6.4047ms -2024-06-24 11:59:41.261 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=Ak3Utiec9zDpxMINIEv43A - null null -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.262 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.262 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.262 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.263 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.323 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.324 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.325 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.325 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.327 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.327 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.776 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.777 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.777 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.777 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.779 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:59:41.782 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.782 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.783 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.784 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:41.785 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:41.785 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:41.787 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.788 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:41.790 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:59:41.790 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 14.2624ms -2024-06-24 11:59:41.793 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryKxByyJnGAkXBBCPh 359 -2024-06-24 11:59:41.793 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.793 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.794 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.794 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.794 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.796 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.799 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.800 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.57ms -2024-06-24 11:59:41.808 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:59:41.812 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:59:41.812 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 3.6422ms -2024-06-24 11:59:41.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:59:41.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:59:41.814 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:59:41.814 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:59:41.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.6906ms -2024-06-24 11:59:41.815 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:59:41.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 1.2986ms -2024-06-24 11:59:41.815 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:59:41.815 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.5821ms -2024-06-24 11:59:41.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:59:41.815 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.4489ms -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.6336ms -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:59:41.816 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 1.043ms -2024-06-24 11:59:41.816 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.6329ms -2024-06-24 11:59:41.817 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:59:41.817 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 1.2211ms -2024-06-24 11:59:41.817 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:59:41.817 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:59:41.818 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:59:41.818 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.8938ms -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:59:41.818 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:59:41.818 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.75ms -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 610 text/css 0.4107ms -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.5001ms -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.9673ms -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:59:41.819 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:59:41.819 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 345 text/css 0.6158ms -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:59:41.819 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:59:41.820 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.2837ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.3601ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.7296ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 1.387ms -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:59:41.820 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.5203ms -2024-06-24 11:59:41.820 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.5561ms -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:59:41.820 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.5022ms -2024-06-24 11:59:41.821 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.6525ms -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.452ms -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.647ms -2024-06-24 11:59:41.821 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:59:41.821 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.6851ms -2024-06-24 11:59:41.823 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:59:41.823 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:59:41.823 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 2.4555ms -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 3.3345ms -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 3.4484ms -2024-06-24 11:59:41.823 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:59:41.823 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 4.1804ms -2024-06-24 11:59:41.824 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:59:41.824 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 4.3211ms -2024-06-24 11:59:41.825 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 5.5259ms -2024-06-24 11:59:41.826 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 5.2894ms -2024-06-24 11:59:41.826 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:59:41.826 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 6.3013ms -2024-06-24 11:59:41.826 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 8.0354ms -2024-06-24 11:59:41.827 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:59:41.827 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 7.3404ms -2024-06-24 11:59:41.847 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:59:41.848 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:59:41.848 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.9408ms -2024-06-24 11:59:41.850 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:59:41.850 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:59:41.851 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:59:41.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 1.3794ms -2024-06-24 11:59:41.851 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:59:41.851 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.5863ms -2024-06-24 11:59:41.880 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - null null -2024-06-24 11:59:41.885 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css.map'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css.map' -2024-06-24 11:59:41.885 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css.map - 200 679755 text/plain 5.4255ms -2024-06-24 11:59:41.965 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - null null -2024-06-24 11:59:41.971 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js.map' -2024-06-24 11:59:41.971 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js.map - 200 427637 text/plain 5.367ms -2024-06-24 11:59:41.971 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:59:41.972 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.973 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.973 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.973 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.975 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.975 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.975 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 3.7966ms -2024-06-24 11:59:41.993 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.994 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.994 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:41.994 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:41.996 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.996 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:41.996 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 3.0294ms -2024-06-24 11:59:42.001 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=iHqkFn0TSq4WpPXH23zedw - null null -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:42.002 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:42.002 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:42.002 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:42.003 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:42.016 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:42.017 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:42.017 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:42.018 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:42.019 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:42.020 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:42.022 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:42.023 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:42.034 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.035 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:59:42.036 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 1.2606ms -2024-06-24 11:59:42.036 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.040 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:59:42.040 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 3.6265ms -2024-06-24 11:59:42.054 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.055 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:59:42.056 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:59:42.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.9563ms -2024-06-24 11:59:42.056 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:59:42.056 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 2.0328ms -2024-06-24 11:59:42.169 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:59:42.170 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:59:42.170 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.7908ms -2024-06-24 11:59:46.239 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryvNTeu5MoxHGrGZIo 359 -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:46.239 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:46.240 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:46.240 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:46.240 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:46.241 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:46.245 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:46.245 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 6.6594ms -2024-06-24 11:59:46.260 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:46.260 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=iHqkFn0TSq4WpPXH23zedw - 200 null null 4259.1975ms -2024-06-24 11:59:50.181 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/ - null null -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.182 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.183 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.183 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.183 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.184 +03:00 [INF] Executing endpoint '/ (/)' -2024-06-24 11:59:50.186 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.186 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.186 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.188 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.188 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.188 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.190 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.190 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.191 +03:00 [INF] Executed endpoint '/ (/)' -2024-06-24 11:59:50.191 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/ - 200 null text/html; charset=utf-8 9.9467ms -2024-06-24 11:59:50.196 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/disconnect - multipart/form-data; boundary=----WebKitFormBoundaryMAzgAes8JZeqWzko 359 -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.196 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.196 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.197 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.197 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.197 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.197 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=Ak3Utiec9zDpxMINIEv43A - 200 null null 8935.3903ms -2024-06-24 11:59:50.197 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.198 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.198 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/disconnect - 200 0 null 2.6702ms -2024-06-24 11:59:50.208 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - null null -2024-06-24 11:59:50.209 +03:00 [INF] Sending file. Request path: '/libs/bootstrap/css/bootstrap.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\bootstrap\css\bootstrap.css' -2024-06-24 11:59:50.209 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/bootstrap/css/bootstrap.css - 200 281046 text/css 1.6416ms -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - null null -2024-06-24 11:59:50.214 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\css\abp.css' -2024-06-24 11:59:50.214 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/css/abp.css - 200 1342 text/css 0.3831ms -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/v4-shims.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\v4-shims.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/v4-shims.css - 200 41574 text/css 0.8232ms -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/blazorise.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\blazorise.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/blazorise.css - 200 67982 text/css 0.5427ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/css/all.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\css\all.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/css/all.css - 200 141265 text/css 1.2522ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Snackbar/blazorise.snackbar.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.snackbar\1.5.2\staticwebassets\blazorise.snackbar.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Snackbar/blazorise.snackbar.css - 200 11949 text/css 0.2652ms -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise.bootstrap5\1.5.2\staticwebassets\blazorise.bootstrap5.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise.Bootstrap5/blazorise.bootstrap5.css - 200 94667 text/css 0.4992ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.BlazoriseUI\wwwroot\volo.abp.blazoriseui.css' -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - null null -2024-06-24 11:59:50.215 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.BlazoriseUI/volo.abp.blazoriseui.css - 200 1274 text/css 0.3123ms -2024-06-24 11:59:50.215 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\chart.js\Chart.min.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/chart.js/Chart.min.css - 200 521 text/css 0.2332ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\abp-bundle.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/abp-bundle.css - 200 3385 text/css 0.2779ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/blazor-global-styles.css - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - null null -2024-06-24 11:59:50.216 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\css\bootstrap-datepicker.min.css' -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\blazor-bundle.css' -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/blazor-global-styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\blazor-global-styles.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/css/bootstrap-datepicker.min.css - 200 15737 text/css 0.6843ms -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/blazor-bundle.css - 200 7899 text/css 0.4877ms -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/blazor-global-styles.css - 200 610 text/css 0.2231ms -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\font-bundle.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/font-bundle.css - 200 48 text/css 0.2694ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Sending file. Request path: '/MyCompanyName.MyProjectName.Blazor.Server.styles.css'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\obj\Debug\net9.0\scopedcss\bundle\MyCompanyName.MyProjectName.Blazor.Server.styles.css' -2024-06-24 11:59:50.216 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/MyCompanyName.MyProjectName.Blazor.Server.styles.css - 200 345 text/css 0.2168ms -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - null null -2024-06-24 11:59:50.216 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/book.png - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\layout-bundle.css' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/layout-bundle.css - 200 25953 text/css 1.0154ms -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\authentication-state-listener.js' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/authentication-state-listener.js - 200 453 application/javascript 0.3411ms -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js'. Physical path: 'C:\P\abp\framework\src\Volo.Abp.AspNetCore.Components.Web\wwwroot\libs\abp\js\abp.js' -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-support.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-support.png' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-support.png - 200 33989 image/png 0.8296ms -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web/libs/abp/js/abp.js - 200 8553 application/javascript 0.5344ms -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/images/getting-started/bg-01.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\bg-01.png' -2024-06-24 11:59:50.217 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/bg-01.png - 200 27830 image/png 1.1898ms -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - null null -2024-06-24 11:59:50.217 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - null null -2024-06-24 11:59:50.217 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\scripts\style-initializer.js' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/scripts/style-initializer.js - 200 65 application/javascript 0.395ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-blog.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-blog.png' -2024-06-24 11:59:50.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - null null -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-blog.png - 200 42029 image/png 1.4202ms -2024-06-24 11:59:50.218 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\bootstrap-icons.css' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css - 200 74827 text/css 2.1644ms -2024-06-24 11:59:50.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - null null -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/discord.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\discord.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/discord.svg - 200 1372 image/svg+xml 0.2998ms -2024-06-24 11:59:50.218 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - null null -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\js\lepton-x.bundle.min.js' -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/stack-overflow.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\stack-overflow.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/js/lepton-x.bundle.min.js - 200 31189 application/javascript 1.0068ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/x-white.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\x-white.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/stack-overflow.svg - 200 587 image/svg+xml 0.2908ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/youtube.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\youtube.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/youtube.svg - 200 904 image/svg+xml 0.2204ms -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/x-white.svg - 200 305 image/svg+xml 0.521ms -2024-06-24 11:59:50.218 +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: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-datepicker\js\bootstrap-datepicker.min.js' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-datepicker/js/bootstrap-datepicker.min.js - 200 33700 application/javascript 1.0882ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_framework/blazor.web.js'. Physical path: 'N/A' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_framework/blazor.web.js - 200 187402 application/javascript 0.9967ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/img-community.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\img-community.png' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/img-community.png - 200 65374 image/png 2.065ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/images/getting-started/instagram.svg'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\instagram.svg' -2024-06-24 11:59:50.218 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/instagram.svg - 200 6223 image/svg+xml 0.5971ms -2024-06-24 11:59:50.218 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\jquery\jquery.min.js' -2024-06-24 11:59:50.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/jquery/jquery.min.js - 200 89478 application/javascript 1.6585ms -2024-06-24 11:59:50.219 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap\js\bootstrap.bundle.js' -2024-06-24 11:59:50.219 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap/js/bootstrap.bundle.js - 200 216531 application/javascript 2.4713ms -2024-06-24 11:59:50.220 +03:00 [INF] Sending file. Request path: '/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css'. Physical path: 'C:\Users\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\css\bootstrap-dim.css' -2024-06-24 11:59:50.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/css/bootstrap-dim.css - 200 262392 text/css 4.064ms -2024-06-24 11:59:50.220 +03:00 [INF] Sending file. Request path: '/images/getting-started/book.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\getting-started\book.png' -2024-06-24 11:59:50.220 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/getting-started/book.png - 200 337312 image/png 3.5738ms -2024-06-24 11:59:50.275 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - null null -2024-06-24 11:59:50.276 +03:00 [INF] Sending file. Request path: '/images/logo/leptonx/logo-light.png'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\images\logo\leptonx\logo-light.png' -2024-06-24 11:59:50.276 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/images/logo/leptonx/logo-light.png - 200 33228 image/png 0.5321ms -2024-06-24 11:59:50.278 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null -2024-06-24 11:59:50.278 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null -2024-06-24 11:59:50.279 +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\enisn\.nuget\packages\volo.abp.aspnetcore.components.web.leptonxlitetheme\3.2.0-rc.5\staticwebassets\side-menu\libs\bootstrap-icons\font\fonts\bootstrap-icons.woff2' -2024-06-24 11:59:50.279 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Volo.Abp.AspNetCore.Components.Web.LeptonXLiteTheme/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 0.9512ms -2024-06-24 11:59:50.280 +03:00 [INF] Sending file. Request path: '/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\libs\@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' -2024-06-24 11:59:50.280 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 156400 font/woff2 1.848ms -2024-06-24 11:59:50.293 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_blazor/initializers - null null -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.293 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.294 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.294 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.294 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.295 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.295 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.295 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_blazor/initializers - 200 null application/json; charset=utf-8 2.0347ms -2024-06-24 11:59:50.297 +03:00 [INF] Request starting HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - null 0 -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.297 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.297 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.297 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.298 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.298 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.298 +03:00 [INF] Request finished HTTP/2 POST https://localhost:44300/_blazor/negotiate?negotiateVersion=1 - 200 316 application/json 1.3783ms -2024-06-24 11:59:50.300 +03:00 [INF] Request starting HTTP/2 CONNECT https://localhost:44300/_blazor?id=p6xfqBMG6MixyTx1n9SFCA - null null -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessRequestContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ResolveRequestUri. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.OpenIddictServerHandlers+InferEndpointType. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateTransportSecurityRequirement. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Server.OpenIddictServerEvents+ProcessRequestContext was successfully processed by OpenIddict.Server.AspNetCore.OpenIddictServerAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.300 +03:00 [INF] Identity.Application was not authenticated. Failure message: Unprotect ticket failed -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ValidateHostHeader. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+EvaluateValidatedTokens. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromAuthorizationHeader. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromBodyForm. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.AspNetCore.OpenIddictValidationAspNetCoreHandlers+ExtractAccessTokenFromQueryString. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was successfully processed by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.300 +03:00 [DBG] The event OpenIddict.Validation.OpenIddictValidationEvents+ProcessAuthenticationContext was marked as rejected by OpenIddict.Validation.OpenIddictValidationHandlers+ValidateRequiredTokens. -2024-06-24 11:59:50.300 +03:00 [DBG] AuthenticationScheme: OpenIddict.Validation.AspNetCore was not authenticated. -2024-06-24 11:59:50.301 +03:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 11:59:50.307 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.307 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.307 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.308 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.Emailing -2024-06-24 11:59:50.308 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: SettingManagement.TimeZone -2024-06-24 11:59:50.308 +03:00 [INF] Authorization failed. These requirements were not met: -PermissionRequirement: FeatureManagement.ManageHostFeatures -2024-06-24 11:59:50.310 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.310 +03:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2024-06-24 11:59:50.316 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.316 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/utilities.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\utilities.js' -2024-06-24 11:59:50.316 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/utilities.js?v=1.5.2.0 - 200 9511 application/javascript 0.5688ms -2024-06-24 11:59:50.317 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.318 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/button.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\button.js' -2024-06-24 11:59:50.318 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/button.js?v=1.5.2.0 - 200 946 application/javascript 0.3235ms -2024-06-24 11:59:50.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.320 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - null null -2024-06-24 11:59:50.320 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/sha512.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\sha512.js' -2024-06-24 11:59:50.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/sha512.js?v=1.5.2.0 - 200 17899 application/javascript 0.4448ms -2024-06-24 11:59:50.320 +03:00 [INF] Sending file. Request path: '/_content/Blazorise/vendors/jsencrypt.js'. Physical path: 'C:\Users\enisn\.nuget\packages\blazorise\1.5.2\staticwebassets\vendors\jsencrypt.js' -2024-06-24 11:59:50.320 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/_content/Blazorise/vendors/jsencrypt.js?v=1.5.2.0 - 200 55434 application/javascript 0.7989ms -2024-06-24 11:59:50.357 +03:00 [INF] Request starting HTTP/2 GET https://localhost:44300/favicon.ico - null null -2024-06-24 11:59:50.358 +03:00 [INF] Sending file. Request path: '/favicon.ico'. Physical path: 'C:\P\abp\templates\app-nolayers\aspnet-core\MyCompanyName.MyProjectName.Blazor.Server\wwwroot\favicon.ico' -2024-06-24 11:59:50.358 +03:00 [INF] Request finished HTTP/2 GET https://localhost:44300/favicon.ico - 200 32038 image/x-icon 0.5913ms -2024-06-24 12:03:16.560 +03:00 [INF] Application is shutting down... -2024-06-24 12:03:16.561 +03:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' -2024-06-24 12:03:16.561 +03:00 [INF] Request finished HTTP/2 CONNECT https://localhost:44300/_blazor?id=p6xfqBMG6MixyTx1n9SFCA - 200 null null 206261.3674ms -2024-06-24 12:03:16.561 +03:00 [INF] Connection id "0HN4K5FTEDDQ7", Request id "0HN4K5FTEDDQ7:000000DF": the application completed without reading the entire request body. -2024-06-24 12:03:16.565 +03:00 [DBG] Stopped background worker: Volo.Abp.OpenIddict.Tokens.TokenCleanupBackgroundWorker diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs index af5c335654..8923f6189b 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs @@ -384,7 +384,7 @@ public class MyProjectNameModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs index 4b93f6e3dd..85c6651698 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server.Mongo/MyProjectNameHostModule.cs @@ -311,7 +311,7 @@ public class MyProjectNameHostModule : AbpModule app.UseCorrelationId(); app.UseBlazorFrameworkFiles(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs index 8464e71ab3..0ff851d391 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.WebAssembly/Server/MyProjectNameHostModule.cs @@ -330,7 +330,7 @@ public class MyProjectNameHostModule : AbpModule app.UseCorrelationId(); app.UseBlazorFrameworkFiles(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs index 9b626826c9..0a1942912c 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs @@ -350,7 +350,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs index 0bd591aee0..a4a4410663 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs @@ -368,7 +368,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs index 01915fd9c7..543c60f13f 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs @@ -332,7 +332,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs index 37080dbd94..e8c99fc852 100644 --- a/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs +++ b/templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs @@ -349,7 +349,7 @@ public class MyProjectNameModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs index cc9b5082d1..19363e777b 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs @@ -206,7 +206,7 @@ public class MyProjectNameAuthServerModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs index 5dd67c995b..3414c945a3 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server.Tiered/MyProjectNameBlazorModule.cs @@ -361,7 +361,7 @@ public class MyProjectNameBlazorModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs index fdd149901c..6fb111d98d 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameBlazorModule.cs @@ -271,7 +271,7 @@ public class MyProjectNameBlazorModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs index 5535341c75..4c85dd798a 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Blazor.WebApp.Tiered/MyProjectNameBlazorModule.cs @@ -364,7 +364,7 @@ public class MyProjectNameBlazorModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); 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 dad29d9cc4..d1ce178d29 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 @@ -274,7 +274,7 @@ public class MyProjectNameBlazorModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs index 5f056f2518..73033bdda1 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs @@ -188,7 +188,7 @@ public class MyProjectNameHttpApiHostModule : AbpModule app.UseAbpRequestLocalization(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs index 0b4c344a06..9d28180208 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/MyProjectNameHttpApiHostModule.cs @@ -193,7 +193,7 @@ public class MyProjectNameHttpApiHostModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs index 73a6b07595..9c2db7971c 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebModule.cs @@ -313,7 +313,7 @@ public class MyProjectNameWebModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs index 9a8ca6db61..bec50e72eb 100644 --- a/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs +++ b/templates/app/aspnet-core/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs @@ -226,7 +226,7 @@ public class MyProjectNameWebModule : AbpModule } app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs index c3deb7a69d..feb60f2b34 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.AuthServer/MyProjectNameAuthServerModule.cs @@ -210,7 +210,7 @@ public class MyProjectNameAuthServerModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs index b81992c44d..b845e23241 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs @@ -254,7 +254,7 @@ public class MyProjectNameBlazorHostModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); app.UseAbpOpenIddictValidation(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs index cefb3559ff..d53b3d90bc 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs @@ -175,7 +175,7 @@ public class MyProjectNameHttpApiHostModule : AbpModule app.UseHttpsRedirection(); app.UseCorrelationId(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseCors(); app.UseAuthentication(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs index db6ada6730..e90eddd122 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs @@ -240,7 +240,7 @@ public class MyProjectNameWebHostModule : AbpModule } app.UseHttpsRedirection(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication(); diff --git a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs index 5fa8bbe0b5..5bca5679e1 100644 --- a/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs +++ b/templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Unified/MyProjectNameWebUnifiedModule.cs @@ -158,7 +158,7 @@ public class MyProjectNameWebUnifiedModule : AbpModule } app.UseHttpsRedirection(); - app.MapStaticAssets(); + app.MapAbpStaticAssets(); app.UseRouting(); app.UseAuthentication();