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:
Some useful links
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,
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?