Activities of "maliming"

hi

Can you try to set AbortOnConnectFail to false?

Please update your MyBankStoreAuthServerModule file

Change var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]!); to var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]!, options => options.AbortOnConnectFail = false);

Also PostConfigure<RedisCacheOptions>

public override void ConfigureServices(ServiceConfigurationContext context)
{
    PostConfigure<RedisCacheOptions>(options =>
    {
        options.ConfigurationOptions ??= new ConfigurationOptions();
        options.ConfigurationOptions.AbortOnConnectFail = false;
    });
}

Thanks.

hi

The KafkaDistributedEventBus only accepts one TopicName

Both eventbus senders and receivers use the same name.

have Microservice need to publish events to topic and consume events from another topic

Why do you need this use case in EventBus?

Thanks.

hi

What is your use case? EventBus?

You can take look at this:https://abp.io/support/questions/3412/Kafka-subscribe-into-multiple-topics#answer-7b978c65-e340-67e9-dcd9-3a0508b832b4

Thanks.

hi

You need to create static proxy for DocumentService in your InvoiceService service and create InvoiceService proxy in your DocumentService

Can you share your Static Proxy code? You can also share your project source code.

liming.ma@volosoft.com

Thanks.

Thank you. 👍

hi roberto.fiocchi

Can you create a new question? I will forward it to our Suite and Studio team.

Thanks.

hi

Can you confirm your Redis connection string is correct? Does your Redis server need a password?

You can check your appsettings.json file.

Thanks

hi

Your ticket has been refunded.

Thanks.

Great 👍

Great

Showing 41 to 50 of 11066 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 October 30, 2025, 06:33