Activities of "maliming"

hi

Please test the new commits in your stage environment.

https://github.com/Flo3Digital/Flo3BlazorDev/commits/master/

Thanks.

hi

Can you upload your project code to the Github private repository?

I will check your code . My GitHub user name is maliming Thanks.

Answer

hi

https://github.com/corne-du-plooy/ABPTest/commit/c7e2c8b55ab892f7b81e648858c8eb31bc9e151c

hi

Can you share the new logs of API website?

Thanks.

hi

Add this after app.UseAuthentication()

hi

This is an encrypted token. You can add a middle to write the bearer token header to log in your API website,

app.Use(async (httpContext, next) =>
{
    var bearerToken = httpContext.Request.Headers["Authorization"].ToString();
    var logger = httpContext.RequestServices.GetRequiredService<ILogger<MyProjectNameWebModule>>();
    logger.LogInformation($"Bearer Token: {bearerToken}");
    await next(httpContext);
});

hi

https://github.com/abpframework/abp/issues/20013#issuecomment-2160025249

https://abp.io/support/questions/7180/Deploying-an-ABP-tiered-project-to-mutliple-docker-containers#answer-3a1297a0-ff1b-ca76-c30d-0b6e0f62253d

Failed to validate the token.
IDX10204: Unable to validate issuer. validationParameters.ValidIssuer is null or whitespace AND validationParameters.ValidIssuers is null or empty.

Can you share a access_token?

Answer

hi

I have tested it, and there is no problem.

> AbpPayment/src/PaymentDemo.DbMigrator> dotnet run
[14:55:29 INF] Started database migrations...
[14:55:29 INF] Migrating schema for host database...
[14:55:43 INF] Executing host database seed...
[14:55:46 INF] Successfully completed host database migrations.
[14:55:46 INF] Successfully completed all database migrations.
[14:55:46 INF] You can safely end this process...

The core change commits are:

https://github.com/adityanbajpai/AbpPayment/commit/627069926ec2a3c8787ac0069808b2cefb5b4172 https://github.com/adityanbajpai/AbpPayment/commit/f8a3315c1b5f289f8f34bcbc3af0e160e64aed96

hi

https://abp.io/docs/latest/framework/architecture/modularity/extending/customizing-application-modules-overriding-services?_redirected=B8ABF606AA1BDF5C629883DF1061649A#example-overriding-a-repository

hi

I understand your situation. Maybe other projects also execute background jobs, so your code is not applied to all projects.

You can try to add your code to Domain module.

Showing 3201 to 3210 of 10645 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20