Activities of "maliming"

Can you share a project so I can reproduce the problem locally?

hi

I am unable to reach the https://powershare.xx.at/ website.

Can you share some code so I can reproduce this problem in a template project?

Thanks.

If your application is monolithic and uses the same DBContext. You can refer to https://github.com/abpframework/abp-samples/tree/master/MultipleDbContext

Answer

This is very simple. You only need to check the current user's permissions and then set values ​​for the DTO class in application services.

https://abp.io/docs/latest/framework/fundamentals/authorization#iauthorizationservice

hi

I can see from the log that this API is blocking requests. However, the log level is Information and no more info can be obtained. You can change the log level to Debug so that we can get more information in next time.

And is your Redis work?

IDX10223: Lifetime validation failed. The token is expired.

This is a normal log if your access token is expired.


When this happens:

  1. Is the database in a normal state?
  2. Is the Redis in a normal state?
  3. What about the server's memory and CPU?

We can only change the log level and try to reproduce the problem.

There are not many clues at the moment.


.MinimumLevel.Debug()

public class Program
{
    public async static Task<int> Main(string[] args)
    {
        IdentityModelEventSource.ShowPII = true;

        IdentityModelEventSource.Logger.LogLevel = EventLevel.Verbose;
        var wilsonTextLogger = new TextWriterEventListener("Logs/identitymodel.txt");
        wilsonTextLogger.EnableEvents(IdentityModelEventSource.Logger, EventLevel.Verbose);

        Log.Logger = new LoggerConfiguration()
            .MinimumLevel.Debug()
            .MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
            .Enrich.FromLogContext()
            .WriteTo.Async(c => c.File("Logs/logs.txt"))
            .CreateLogger();

ok

hi

There is no example now, you can test it by following the document. It's easy.

Answer

hi

You can check the permissions of current users in the application service layer.

Then, fill the entity properties to dto.

If there is no permission, set the DTO property to empty or null.

hi

Please send full request logs of auth server, Thanks.

hi

lowercase.

public class OidcAppService : ApplicationService, IOidcAppService

Showing 61 to 70 of 7725 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30