Activities of "mmaldonado@emscltd.com"

Answer

thank you very much I miss that step

Question
  • ABP Framework version: 8.1.1
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

I had a solution of version 6.x and then i did the upgrade to 8.1.1 and i am seeing when i create a tenant like "Tenant QA" it is not working from login, but it does on impersonation, on the previous version this worked without errors, could you help me to find a solution.

Tenant list Switch tenant on login *error when tenant name has space Switch tenant on login when tenant name has not spaces

Just as recomendation to improve Abp.io

  • ABP Framework version: 8.1.1
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

I am facing problems when publishing gateways to different environments, because I have:

  • yarp.json for local environment or development
  • yarp.Stage.json for Stage or QA
  • yarp.Production.json for Production
using Microsoft.Extensions.Configuration;

namespace Microsoft.Extensions.Hosting;

public static class AbpHostingHostBuilderExtensions
{
    public const string AppYarpJsonPath = "yarp.json";

    public static IHostBuilder AddYarpJson(
        this IHostBuilder hostBuilder,
        bool optional = true,
        bool reloadOnChange = true,
        string path = AppYarpJsonPath)
    {
        return hostBuilder.ConfigureAppConfiguration((_, builder) =>
        {
            builder.AddJsonFile(
                path: AppYarpJsonPath, // should be path
                optional: optional,
                reloadOnChange: reloadOnChange
            );
        });
    }
}

so I could use from program.cs on gateway .AddYarpJson(path: $"yarp.{builder.Environment.EnvironmentName}.json")

but even better should be

public static IHostBuilder AddYarpJson(
    this IHostBuilder hostBuilder,
    bool optional = true,
    bool reloadOnChange = true,
    string path = AppYarpJsonPath)
{
    return hostBuilder.ConfigureAppConfiguration((context, builder) =>
    {
        builder.AddJsonFile(
            path: path,
            optional: optional,
            reloadOnChange: reloadOnChange
        );

        builder.AddJsonFile(
            path: $"yarp.{context.HostingEnvironment.EnvironmentName}.json",
            optional: optional,
            reloadOnChange: reloadOnChange
        );
    });
}
Question
  • ABP Framework version: 6.0.3
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

Which is the best way to send big files (300MB or more) to the server from angular?

Question
  • ABP Framework version: 6.0.3
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

In my system there are 3 microservices, product-service, order-service and provider-service,

product-service and order-service has to check if the user is granted to access to the information requested, this logic is inside provider-service, so I would like to access to the provider-service domain directly

could you guide me how should i implement this?

Question
  • ABP framework version: 6.0.3
  • UI Type: Angular
  • Database system: EF Core (SQL Server)
  • Tiered (for MVC) or separate auth server (for Angular): yes

If I have product-service, order-service and provider-service and they need to communicate with each other to send and receive information, what should be the best way to implement this.

I tried using the documentation and it gives me a cyclical error because of the references.

could you provide an example of it?

  • ABP Framework version: 6.0.3
  • UI Type: Angular
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

I want to create a shared db, for catalogues,

I have 2 microservices, they share the catalogue DB, I need to find a way to create a 3rd micro service and make its DB shared, is is possible?

could you help me to find solutions to this problem?

Thank you very much

the order of scripts is better now, but it still not work.

is it possible to import jquery from header section?

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