Activities of "liangshiwei"

Hi, @ageiter

I don't think "Load User Profile" solves the real problem, but is just a workaround to get around the whole certificate thing. Because with this flag set, it also works with the development certificates (i.e. without the pfx files).

The app templates provide the most basic way.

The best place to store your certificates will depend on your host:

  • For IIS applications, storing the certificates in the machine store is the recommended option.
  • On Azure, certificates can be uploaded and exposed to Azure App Service applications using the special WEBSITE_LOAD_CERTIFICATES flag. For more information, visit Use a TLS/SSL certificate in your code in Azure App Service.

Some useful links

  • https://support.abp.io/QA/Questions/3537/OpenIddict-WindowsCryptographicException-Access-is-denied
  • https://learn.microsoft.com/en-us/azure/app-service/configure-ssl-certificate-in-code
  • https://documentation.openiddict.com/configuration/encryption-and-signing-credentials.html#registering-a-certificate-recommended-for-production-ready-scenarios

in Custom Login Page

Where did you customize the Login page? Angular or MVC?

Can you share some screenshots?

Hi,

I can't reproduce the problem with the steps you provided:

public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
    var app = context.GetApplicationBuilder();
    var env = context.GetEnvironment();

    app.UseElasticApm(app.ApplicationServices.GetRequiredService<IConfiguration>());
    
    .......
}

"ElasticApm":
  {
    "ServerUrl":  "http://localhost:8200",
    "SecretToken":  "",
    "ServiceName": "MyProjectName"
  }
public class IndexModel : MyProjectNamePageModel
{
  public void OnGet()
  {
    throw new UserFriendlyException("Test exception");
  }
}

Hi,

I can't reproduce the problem with the project you provided.

Can I check it remotely?

Hi,

Yes, you can try to implement it.

Just an idea, You can customize the IReadOnlyRepository and switch the connection string to the read-only database.

Abp does not provide out-of-the-box read-write separation.

You can see: https://github.com/abpframework/abp/issues/7120 and https://github.com/abpframework/abp/issues/3838

Hi,

It's a problem, we will fix it and your ticket refunded.

You can add the following code to the WebModule class:

Configure<AbpHttpClientOptions>(options =>
{
    options.HttpClientProxies.Add(typeof(ISubscriptionAppService),new HttpClientProxyConfig(typeof(ISubscriptionAppService),SaasHostRemoteServiceConsts.RemoteServiceName));
});

ok, I have sent an email to you.

Can I check it remotely via zoom?

There is no problem with the project you provided:

My steps:

  • Create database and run the AuthServer& HttpApi.Host projects
  • Run yarn install & yarn start on the angular folder
Showing 4141 to 4150 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 04, 2025, 06:41