Activities of "maliming"

hi

Can you try installing Docker Desktop and running a Redis container?

https://docs.docker.com/desktop/setup/install/windows-install/

docker run -p 6379:6379 --name redis -d redis:alpine

Thanks

Answer

hi

So why do you want to use a new topic? external system could use the same topic, too. There is no problem.

Thanks

Answer

hi

publish event from topic 1 and consume event from external system

Is your external system based on the ABP framework?

You can publish messages without using ABP's KafkaDistributedEventBus if the consumer is not an ABP application.

Just use Kafka code to publish the message to a new topic.

Thanks.

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.

Answer

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.

Answer

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

Showing 1021 to 1030 of 12040 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.3.0-preview. Updated on February 27, 2026, 05:41
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.