Activities of "truong.nguyen@outlook.com"

Volo.Abp.OpenIddict.Pro

One of the templates (module-pro) in v6.0.0-rc.2 has reference to Volo.Abp.OpenIddict.Pro package. I don't see this module from the module list and couldn't find a way to download the source code for this module. Can you assist me of how to download this source code for module Volo.Abp.OpenIddict.Pro?

  • ABP Framework version: v6.0.0-rc.2

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

  • ABP Framework version: v6.0.0-rc.2
  • UI type: Angular

I've received the instruction for this question before. However, it was for v4. What is the instruction for v6? and would the source code for this version be different?

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

Hi,

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

-Truong

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

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

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?

Showing 1 to 7 of 7 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11