Activities of "bqabani"

Yes It was solved, Thank you

The solution was to create a reference for identity service module (not the administration service module)

using : https://docs.abp.io/en/commercial/latest/startup-templates/microservice/synchronous-interservice-communication

The solution was to create a reference for identity service module (not the administration service module)

using : https://docs.abp.io/en/commercial/latest/startup-templates/microservice/synchronous-interservice-communication

Thank you for your prompt answer!

Please provide me with more details, I cannot find IPermissionIntegrationService I searched for it all my solution, Not sure which dependency should I use,

And finally Plaese provide with a blog or documentation reference for that is possible

Thank you

Thank you

Hi,

Did not work, Please note that:

  • Version is 5.0.0
  • identity is seperated
  • Account module source code is added to project
  • Lepton Theme module source code is added to project

And I tried to create a new project with the same setup I got the same error

I could make this work by using the following code:

public override void PostConfigureServices(ServiceConfigurationContext context) { var configuration = context.Services.GetConfiguration(); var serverName = configuration.GetValue<string>("Schedule:ServerName"); var workerCount = configuration.GetValue<int>("Schedule:WorkerCount"); if (!string.IsNullOrEmpty(serverName) && workerCount > 0) { Configure<AbpHangfireOptions>(options => { options.ServerOptions = new BackgroundJobServerOptions { WorkerCount = workerCount, ServerName = serverName, Queues = new string[] { "default" , "logs"}, }; }); } base.PostConfigureServices(context); }

Still cannot limit the execution time for job instance, so any job does not work more than 5 minutes for example

Thank you for your response, Can you provide me more details about the first point:

Typically there is only one hangfire server per application instance, you can use AbpHangfireOptions to create hangfire server instance if you want.

Currently I add hangfire using the following code:

GlobalConfiguration.Configuration.UseSqlServerStorage(configuration.GetConnectionString("Default-hangfire"));
context.Services.AddHangfire(config =>
{
    config.UseSqlServerStorage(configuration.GetConnectionString("Default-hangfire"),  options: ops);
});

Thank you

Dear Support team, any update on the original issue?

Hello,

What is your angular version?

Is the defaultProject property exists in your angular.json?

We know defaultProject deprecated with angular 14. And we fixed proxy generation. The fix will be available in 6.0.2

Same error here, abp version 6.0.1, prompt enter target Angular project to place the generated code. when execute generate-proxy -t ng for the Application Module project type. So what's the time for releasing 6.0.2?

That does not solve the problem!

Dear Support team, any update on the original issue?

Any update Please :) ?

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