hi devsumati
Please output the HTTP request info to the logs in your Controllers
You can inject the ILogger<Controller> and write the headers to logs.
var headers = HttpContext.Request.Headers
.Select(header => header.Key + " : " + header.Value)
.ToList()
abc.Controllers.Carts.CartController.GetListAsync (abc.HttpApi)'
abc.Controllers.Categories.CategoryController.GetListAsync (abc.HttpApi)'
abc.Controllers.Addresses.AddressController (abc.HttpApi).
hi
I'm not sure, But you can try to https://support.abp.io/QA/Questions/6281/Handling-an-event-from-the-UI#answer-3a0f98d0-a793-3aec-230f-123071666c06
hi
Can you share the POST request info? what are the HTTP form data?
I will confirm this.
hi
I think this is a bit abnormal. Why does dotnet build command take so long?
We build the framework and some modules, which will take 9 minutes.
https://github.com/abpframework/abp/actions/runs/8578328802/job/23512054046
../framework
../modules/basic-theme
../modules/users
../modules/permission-management
../modules/setting-management
../modules/feature-management
../modules/identity
../modules/identityserver
../modules/openiddict
../modules/tenant-management
../modules/audit-logging
../modules/background-jobs
../modules/account
../modules/cms-kit
../modules/blob-storing-database
hi
I can't reproduce this in a new template project.
Do you have any custom code of the Mapper?
Can you share a project? liming.ma@volosoft.com
Thanks
hi mgurer
You can set the log level to Debug and check the token/handle method logs.
public class Program
{
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
I'm trying to access the IdentiyDBContext in my EFCore project, so I added the Volo.Abp.Identity.Pro.EntityFrameworkCore to the * *EntityFrameworkCore project in a Microservice template.
Did you add the AbpIdentityEntityFrameworkCoreModule as well?
Volo.Abp.AbpException: No configuration found for Microsoft.EntityFrameworkCore.DbContext,
hi
This is not my project. I don't have source code.