Activities of "liangshiwei"

i tried that , didn't work, creating a self signed certificate installed it with the key still there was same error. anyways what's the difference in both procedures? any security flaw?

There is no security flaw. Using a self-signed certificate is the recommended way by openiddict.

Answer

Hi,

You can add the CompanyName to the user's claims.

https://docs.abp.io/en/abp/latest/Authorization#claims-principal-factory https://docs.abp.io/en/abp/latest/Modules/OpenIddict#updating-claims-in-access_token-and-id_token

protected override Expression> CreateFilterExpression()
{
    var expression = base.CreateFilterExpression();
    
    var companyName = currentUser.FindClaimValue("....")

    if (typeof(ICompany).IsAssignableFrom(typeof(TEntity)))
    {
        Expression> isCompanyFilter = e => !IsCompanyFilterEnabled || 
             EF.Property(e, "ICompany").where(e.CompanyName == companyName);
             
        expression = expression == null 
            ? isCompanyFilter 
            : QueryFilterExpressionHelper.CombineExpressions(expression, isCompanyFilter);
    }

    return expression;
}

Hi

We mention this in the documentation

PerfectScrollbar is too buggy on Blazor since DOM is updated dynamically. we decide removed PS for Blazor content.

Maybe related to this.

  • Go to IIS Manager
  • Go to the application pool instance
  • Click advanced settings
  • Under Process model, set Load User Profile to true

https://stackoverflow.com/questions/17840825/cryptographicexception-was-unhandled-system-cannot-find-the-specified-file/27242467#27242467

plz take remote access and let me know what's wrong so we can solve it

You can try the above solution, if it still doesn't work, I can check it remotely

Hi,

Can you see the openiddict.pfx file in the published folder?

Hi,

Please replace the 00000000-0000-0000-0000-000000000000 with a GUID value. And it should be the same as AddProduction EncryptionAndSigningCertificate method parameter value:

PS: please remember to copy openiddict.pfx to the Content Root Folder

I installed yarn v1.22.19 and then re-ran abp install-libs.

Could you share the output?

Hi,

Sorry for that, we have updated the document.

You can check this: https://docs.abp.io/en/commercial/8.1/guides/microservice-mongodb

Hi,

I think this is because there are unfinished jobs. hangfire will try to retry the job. this is expected behavior

Showing 2391 to 2400 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 07, 2025, 08:20