Activities of "truong.nguyen@outlook.com"

Yes, I sent an email. Also pro module Volo.Abp.LeptonXTheme is not available for download either. Can you also share this module with me?

I need to have access to source code of this module for current preview v6.0.0-rc.2 now. Can you share with me?

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

Can you share the v6 source code?

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?

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

These packages are not included in the commercial modules.

I'm building the solution from source codes. If I don't need to include these packages/source code, how can I remove?

You can completely remove the unneeded code from the solution

I suppose by removing these packages, it won't remove/impact functionalities. Is that correct?

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

Any progress on this issue?

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
Showing 1 to 10 of 16 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11