Activities of "icoretchi"

Hi,

As you can see the error is IDX10204: Unable to validate issuer. validationParameters.ValidIssuer is null or whitespace AND validationParameters.ValidIssuers is null or empty. Obviously is something wrong in their communication, Sincerely speaking I am using abp provided helm files without any modification, just put it my domains. Do you have any sample application deployed to the external production Kubernetes cluster, just for me to compare helm manifests?

Hi,

I have found there are the errors. If I change in the generated helm files the values for AuthServer_Authority and Authserver_MetaAddress everything started to work.

Which nuget package need it to be added in ordre to have accsess to LeptonXResource?

I have used this package <PackageReference Include="Volo.Abp.AspNetCore.LeptonX.Shared" Version="4.3.5" /> Interesting that the LeptonX resource appered, but the texts for base english culture does not. On contracry for ro-RO (Romanian) as base culture there are.

Any ideas why?

Hi,

I am using en, not en-GB. How did you concluded that I could use it?

Hi,

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

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"
        );
    }
}
Showing 81 to 87 of 87 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 November 17, 2025, 08:31
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.