Activities of "truong.nguyen@outlook.com"

ABP Commercial v3.3.1 License: Business

public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
    LicenseChecker.Check<AbpAccountSharedApplicationModule>(context);
}

What is LicenseChecker.Check function? What does it do? Why is it needed?

Also, all of the commericial modules has dependency of Abp.Commercial.Core package? What is this package? And where can I get the source code for this package?

Since I have the Business license, if I were to rebuild the commercial modules from source code (Volvo.Account.Pro). Can I remove this LicenseChecker.Check<>()? What will happen?

Also, what is the purpose of AbpLicenseCode in appsettings.json file?

Where can I download the source code for Volo.Abp.Commercial.Core?

Can you also answer these questions?

Also, what is the purpose of AbpLicenseCode in appsettings.json file, generated from Application Template using Abp Suite.

Where can I download the source code for Volo.Abp.Commercial.Core?

Thanks. So I assume that if I rebuild all modules from source codes with LicenseChecker removed, then I don't need to include the ApbLicenseCode in the appsettings.json file. Is this correct?

Many thanks.

Hi, can you assist me on how to download the source code for @volo/abp.commercial.ng.ui?

Hi, I'm having issue running the microservice template with blazor server ui running inside kubernetes. I was able to have all services and auth-server running fine inside kubernetes. Blazor Server UI runs fine if spec.replicas = 1; however, if I have Blazor Server spec.replicas > 1, I'd get a websocket connection failed from the browser. I've tried the following but none successful:

Environments:

  • Google GKE Kubernetes
  • Nginx Ingress Controller
  • Microservice Template v4.4.3

BlazorModule.cs

public override void PreConfigureServices(ServiceConfigurationContext context)
{
    ...

    context.Services.PreConfigure<ISignalRServerBuilder>(builder =>
    {
        builder.AddStackExchangeRedis(configuration["Redis:Configuration"], options =>
        {
            options.Configuration.ChannelPrefix = "Blazor-Channel";
        });
    });
}
        
public override void ConfigureServices(ServiceConfigurationContext context)
{
    ...
    
    context.Services.Configure<ForwardedHeadersOptions>(options =>
    {
        options.ForwardedHeaders =
            ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto;
    });
}
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
    ...
    
    app.UseCookiePolicy(); // added this, Before UseAuthentication or anything else that writes cookies.
    app.UseForwardedHeaders();
}

Ingress.yml

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: blazor-ingress
  annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/ssl-redirect: "true"
    nginx.ingress.kubernetes.io/rewrite-target: /$1
    nginx.ingress.kubernetes.io/use-regex: "true"
    cert-manager.io/cluster-issuer: "letsencrypt-prod"
    nginx.ingress.kubernetes.io/affinity: "cookie"
    nginx.ingress.kubernetes.io/session-cookie-name: "affinity"
    nginx.ingress.kubernetes.io/session-cookie-expires: "14400"
    nginx.ingress.kubernetes.io/session-cookie-max-age: "14400"
    nginx.ingress.kubernetes.io/session-cookie-hash: "sha1"

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes

Any progress on this issue?

Hi,

Is there a Github repos for commerical? If, how do I access to those?

-Truong

Where can I find the source code for the following packages:

  • Volo.Abp.Commercial.SuiteTemplates
  • Volo.Abp.Commercial.Core.csproj
  • Volo.Abp.AspNetCore.Mvc.UI.Theme.Commercial.csproj

If you're creating a bug/problem report, please include followings: I'm building the solution from source codes. If I don't need to include these packages/source code, how can I remove?

  • ABP Framework version: v5.0.1
Showing 1 to 10 of 16 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11