Activities of "icoretchi"

I've resolved the issue by configuring UseAbpIdentity in Identity microservices.

Do I need somehow to configure Identity Microservices?

Hi,

I am receiving the following error:

Hi,

I've done everithing according to the elsa-workflow-demo.

The suggestions does not based on last verison of Elsa. I have problems even with db migration generation.

  • Template: microservice
  • Created ABP Studio Version: 0.9.26
  • Current ABP Studio Version: 2.0.2
  • Multi-Tenancy: Yes
  • UI Framework: angular
  • Theme: leptonx
  • Theme Style: system
  • Run Install Libs: Yes
  • Database Provider: ef
  • Database Management System: sqlserver
  • Mobile Framework: none
  • Public Website: No
  • Include Tests: Yes
  • Dynamic Localization: Yes
  • Kubernetes Configuration: Yes
  • Grafana Dashboard: Yes
  • Use Local References: No
  • Optional Modules:
    • GDPR
    • FileManagement
    • TextTemplateManagement
    • AuditLogging
    • Chat
    • OpenIddictAdmin
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Hi,

Can you provide step by stept instruction how to configure Elsa for Abp microservices solution.

Thanks

Hi,

This is the LaboratoryServiceDataSeeder which is generated by microservice template DataSeeder:

This one is LabEquipmentDataSeederContributor I've added in order to seed:

If I add the seeding code to LaboratoryServiceDataSeeder when is working properly:

using Abc.LaboratoryService.Entities.LabEquipments;
using Abc.LaboratoryService.Enums;
using Volo.Abp.DependencyInjection;
using Volo.Abp.Domain.Repositories;

namespace Abc.LaboratoryService.Data;

public class LaboratoryServiceDataSeeder(
    ILogger<LaboratoryServiceDataSeeder> logger,
    IRepository<LabEquipment, Guid> repository,
    LabEquipmentManager labEquipmentManager
) : ITransientDependency
{
    private readonly ILogger<LaboratoryServiceDataSeeder> _logger = logger;
    private readonly IRepository<LabEquipment, Guid> _repository = repository;
    private readonly LabEquipmentManager _labEquipmentManager = labEquipmentManager;

    public async Task SeedAsync(Guid? tenantId = null)
    {
        _logger.LogInformation("Seeding data...");
        
        if (await _repository.GetCountAsync() > 0)
            return;

        await _labEquipmentManager.CreateAsync(
            name: "Sysmex XP-300",
            isActive: false,
            protocol: Protocol.HL7,
            connectionType: ConnectionType.TCP,
            port: "5000"
        );

        await _labEquipmentManager.CreateAsync(
            name: "Cobas 6000",
            isActive: false,
            protocol: Protocol.ASTM,
            connectionType: ConnectionType.Serial,
            port: "COM3"
        );

        await _labEquipmentManager.CreateAsync(
            name: "Mindray BC-2800",
            isActive: false,
            protocol: Protocol.HL7,
            connectionType: ConnectionType.TCP,
            port: "6000"
        );
    }
}

Hi,

Everything is configured properly, I consider that is an error on discovering IDataSeedContributor.

  • Template: microservice
  • Created ABP Studio Version: 0.9.26
  • Current ABP Studio Version: 1.4.2
  • Multi-Tenancy: Yes
  • UI Framework: angular
  • Theme: leptonx
  • Theme Style: system
  • Run Install Libs: Yes
  • Database Provider: ef
  • Database Management System: sqlserver
  • Mobile Framework: none
  • Public Website: No
  • Include Tests: Yes
  • Dynamic Localization: Yes
  • Kubernetes Configuration: Yes
  • Grafana Dashboard: Yes
  • Use Local References: No
  • Optional Modules:
    • GDPR
    • FileManagement
    • TextTemplateManagement
    • AuditLogging
    • Chat
    • OpenIddictAdmin

Hi,

I create a separate DataSeederContributor for the spesific entity, but unfortunatly is not running at startup. In case if I add the seeding code to the provided by microservice tempate service DataSeeder class everything is working. Any ideas?

Showing 1 to 10 of 157 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 05, 2025, 12:34
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.