SignInManager.IsSignedIn(User) is always false in home page, while its true in login page and other identity pages

Naresh Yalagala 1 Reputation point
2022-07-08T14:41:17.813+00:00

I am creating an MVC application using CleanArchitecture template from https://github.com/jasontaylordev/CleanArchitecture
SignInManager.IsSignedIn(User) is always false in home page despite of logged in, while its true in login page and other identity pages. Can someone help me with it?

My configureService.cs file code inside web project

public static IServiceCollection AddWebUIServices(this IServiceCollection services)  
    {  
        services.AddDatabaseDeveloperPageExceptionFilter();  
  
        services.AddSingleton<ICurrentUserService, CurrentUserService>();  
  
        services.AddHttpContextAccessor();  
  
        services.AddHealthChecks()  
            .AddDbContextCheck<ApplicationDbContext>();  
  
        services.AddControllersWithViews(options =>  
            options.Filters.Add<ApiExceptionFilterAttribute>())  
                .AddFluentValidation(x => x.AutomaticValidationEnabled = false);  
  
        services.AddRazorPages();   
  
        // Customise default API behaviour  
        services.Configure<ApiBehaviorOptions>(options =>  
            options.SuppressModelStateInvalidFilter = true);  
  
        services.AddOpenApiDocument(configure =>  
        {  
            configure.Title = "MyApp API";  
            configure.AddSecurity("JWT", Enumerable.Empty<string>(), new OpenApiSecurityScheme  
            {  
                Type = OpenApiSecuritySchemeType.ApiKey,  
                Name = "Authorization",  
                In = OpenApiSecurityApiKeyLocation.Header,  
                Description = "Type into the textbox: Bearer {your JWT token}."  
            });  
  
            configure.OperationProcessors.Add(new AspNetCoreOperationSecurityScopeProcessor("JWT"));  
        });  
  
        return services;  
    }  

My program.cs code inside web project

var builder = WebApplication.CreateBuilder(args);   
   
// Add services to the container.  
builder.Services.AddApplicationServices();  
builder.Services.AddInfrastructureServices(builder.Configuration);  
builder.Services.AddWebUIServices();  
  
var app = builder.Build();  
  
// Configure the HTTP request pipeline.  
if (app.Environment.IsDevelopment())  
{  
    app.UseDeveloperExceptionPage();  
    app.UseMigrationsEndPoint();  
  
    // Initialise and seed database  
    using (var scope = app.Services.CreateScope())  
    {  
        var initialiser = scope.ServiceProvider.GetRequiredService<ApplicationDbContextInitialiser>();  
        await initialiser.InitialiseAsync();  
        await initialiser.SeedAsync();  
    }  
}  
else  
{  
    // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.  
    app.UseHsts();  
}  
  
app.UseHealthChecks("/health");  
app.UseHttpsRedirection();  
app.UseStaticFiles();  
  
app.UseSwaggerUi3(settings =>  
{  
    settings.Path = "/api";  
    settings.DocumentPath = "/api/specification.json";  
});  
  
app.UseRouting();  
  
  
  
app.UseAuthentication();  
app.UseIdentityServer();  
app.UseAuthorization();  
  
app.MapControllerRoute(  
    name: "Admin",  
    pattern: "{area:exists}/{controller=Dashboard}/{action=Index}/{id?}");  
  
app.MapControllerRoute(  
    name: "default",  
    pattern: "{controller=Home}/{action=Index}/{id?}");  
  
app.MapRazorPages();  
  
app.MapFallbackToFile("index.html"); ;  
  
app.Run();  
  
// Make the implicit Program class public so test projects can access it  
public partial class Program { }  

Can someone help me fix this ?

ASP.NET Core
ASP.NET Core
A set of technologies in the .NET Framework for building web applications and XML web services.
4,140 questions
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,246 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Naresh Yalagala 1 Reputation point
    2022-07-08T16:09:06.907+00:00

    Its an MVC App, Im calling it in views, through _loginpartial view