Starts in:
0 DAY
1 HR
17 MIN
3 SEC
Starts in:
0 D
1 H
17 M
3 S

Activities of "liangshiwei"

Hi,

For example we might want to have main portal with subdomains like {tenantName}.portal.com but both API and AuthServer would have only one domain configured like api.com and auth.com.

Yes, it's possible, you can try it a try.

Hi,

you add [Authorize] attribute to the page model.

Hi,

Signing Certificate couldn't found: openiddict.pfx

You should put the openiddict.pfx in the right place.

try


PreConfigure<OpenIddictServerBuilder>(serverBuilder =>
{
    serverBuilder.AddSigningCertificate(GetSigningCertificate(hostingEnvironment, configuration));
    serverBuilder.AddEncryptionCertificate(GetSigningCertificate(hostingEnvironment, configuration));
});

private X509Certificate2 GetSigningCertificate(IWebHostEnvironment hostingEnv, IConfiguration configuration)
{
    var fileName = "authserver.pfx";
    var passPhrase = "a0166a3a-5ffb-4f53-a8d7-a699d3c3ce1e";
    var file = Path.Combine(hostingEnv.ContentRootPath, fileName);

    if (!File.Exists(file))
    {
        throw new FileNotFoundException($"Signing Certificate couldn't found: {file}");
    }

    return new X509Certificate2(file, passPhrase);
}

same thing not showing module in abp suite only main project

you should add module project manually

okay

Hi,

I upgarde the Blazorise pacakge. and run abp bundle to generate bundle files.

How do I reproduce the problem?

Hi,

I can't reproduce the problem.

My steps

Change all HTTP to HTTPS

Update MAUI appsettings.json

Run all services and MAUI app

Hi,

I got it, I'm checking other people's questions, I'll check it out asap

Hi,

Still not, you can share the the repo link via email.

shiwei.liang@volosoft.com

Hi,

I didn't get the email from github.

Showing 141 to 150 of 6105 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06