0
viswajwalith created
ABP Framework version: v4.3 UI type: MVCDB provider: EF Core / MongoDB Tiered (MVC) or Identity Server Separated (Angular): yes , Microservice Architecture Exception message and stack trace:
Hi,
We are trying to integrate elsa dashboard, it worked perfectly in Application template, but when we try to integrate in microservice based ABP solution getting following error when accessing the elsa dashboard.
2 Answer(s)
-
0
Hi,
Can you provider steps to reproduce?
-
0
Hi,
Somwhow we are able to get that issue fixed by changing the way of configuring the elsa. Thanks for the support.
private void ConfigureElsa(ServiceConfigurationContext context, IConfiguration configuration) { context.Services .AddElsa( elsa => { elsa .AddMongoDbStores(configuration, databaseName: "AppV3_Elsa", connectionStringName: "ElsaServiceMongoDb"); }) .AddEmailActivities(options => options.Bind(configuration.GetSection("Elsa:Smtp"))) .AddHttpActivities(options => options.Bind(configuration.GetSection("Elsa:Server"))) .AddTimerActivities(options => options.Bind(configuration.GetSection("Elsa:Timers"))); context.Services.AddElsaDashboard(options => options.Configure(x => x.ActivityDefinitions .Add<WriteLine>() .Add<ReadLine>() .Add<ReceiveHttpRequest>() .Add<SendHttpRequest>() .Add<WriteHttpResponse>() .Add<SetVariable>() .Add<ForEach>() )); context.Services.AddUserActivities(); context.Services.AddAssemblyOf<Elsa.Dashboard.Areas.Elsa.Controllers.HomeController>(); context.Services.AddAssemblyOf<Elsa.WorkflowDesigner.ViewComponents.WorkflowDesignerViewComponent>(); context.Services.AddAssemblyOf<Elsa.Dashboard.Areas.Elsa.Controllers.WorkflowDefinitionController>(); context.Services.AddAssemblyOf<Elsa.Dashboard.Areas.Elsa.Controllers.WorkflowInstanceController>(); context.Services.AddNotificationHandlers(typeof(LiquidConfigurationHandler)); //Disable antiforgery validation for elsa Configure<AbpAntiForgeryOptions>(options => { options.AutoValidateFilter = type => type.Assembly != typeof(Elsa.Dashboard.Areas.Elsa.Controllers.HomeController).Assembly; options.AutoValidateFilter = type => type.Assembly != typeof(Elsa.WorkflowDesigner.ViewComponents.WorkflowDesignerViewComponent).Assembly; options.AutoValidateFilter = type => type.Assembly != typeof(Elsa.Dashboard.Areas.Elsa.Controllers.WorkflowDefinitionController).Assembly; options.AutoValidateFilter = type => type.Assembly != typeof(Elsa.Dashboard.Areas.Elsa.Controllers.WorkflowInstanceController).Assembly; }); }