Questions tagged [message-bus]
68 questions
0
votes
2 answers
How to listen to the serialized Azure Message Bus message in c#?
I am using the Azure Message Bus to communicate with my microservices. I am able to send the message under the topic Account Updated from service A. However, the message is not being read by another service called B. I mean if I send "Hello" string,…

saurav.rox
- 345
- 1
- 2
- 12
0
votes
1 answer
Microservices architecture domain context
We have two microservices a person service and a resource service.
The person services stores the general person details, name, address contact information etc.
The resource service would store details about the person if they have a role of…

Chris
- 43
- 5
0
votes
1 answer
MassTransit 6.3.2 Consumer is never called when using IBusControl.ConnectConsumer
When I attach consumers during intial message bus config, the consumers are called as expected.
When I attach the consumers after bus config, using ConnectConsumer the consumers are never called; The temporary queue/exchange is created, but it…

gsn1074
- 117
- 2
- 10
0
votes
1 answer
name of channel in rabitmq consumer using celery
I have setup, where we are using celery and RabbitMQ to schedule our task based on data.
When we create multiple consumer to same queue, it create bindings and web portal shows the consumer IP in channel column.
Its hard to find the consumer based…

Nilesh
- 20,521
- 16
- 92
- 148
0
votes
1 answer
MessageBus pattern to do an initial sync
I have two (micro)services A and B where service B is interested in data of service A. Let's say service A has a table of products with a lot of fields. Service B wants to store a table of products with a subset of the fields (name and id).
To keep…

Diego Frehner
- 2,396
- 1
- 28
- 35
0
votes
2 answers
problem with masstransit dynamic event publish ( json event )
we need publish multiple event as json string from DB. publish this json event by masstransit like this:
using var scope = _serviceScopeFactory.CreateScope();
var sendEndpointProvider =…

Jb_Dda
- 41
- 8
0
votes
1 answer
AvaloniaUI - MVVM/ReactiveUI - compatability with standard ReactiveUI
Avalonia UI has an own implementation/version of ReactiveUI. How compatible is this library with the standard ReactiveUI library ?
In other words, can I create my models and viewmodels in a standard library with the nuget for the standard ReactiveUI…

Geertie
- 237
- 4
- 15
0
votes
1 answer
RabbitMQ Best Practices for High Availability on Cloud
I'm planning to deploy RabbitMQ on Kubernetes Engine Cluster. I see there are two kinds of location types i.e. 1. Region 2. Zone
Could someone help me understand what kind of benefits I can think of respective to each location types? I believe…

Balajee Venkatesh
- 1,041
- 2
- 18
- 39
0
votes
1 answer
Service Fabric pub/sub messaging between stateless services
Whats the best way to implement loosely coupled micro services in Service Fabric using asynchronous messaging. I want service A to publish a message and Service B to receive it. Can I use rabbitmq or azure message bus in such cases. If so how do I…

Patola
- 515
- 8
- 30
0
votes
1 answer
MVC5 Portable Area, how do you use message bus?
I spent several hours reading through many different examples and documentation for setting up a portable area with ASP.NET MVC, with the intent of sharing a common login page with authentication for multiple applications. I got it all together and…

chrisbyte
- 1,408
- 3
- 11
- 18
0
votes
1 answer
Message Bus message documentation using Swashbuckle.AspNetCore?
I am looking into using the Swashbuckle.AspNetCore v4.0.1 NuGet package in my ASP.Net Core project to generate a SwaggerUI documentation endpoint for my web API that will be used by various teams internal to my company. My API consumes and emits a…

Ryan Renne
- 91
- 5
0
votes
1 answer
AMQP-CPP - Event based approach
I have been using AMQP-CPP for RabbitMQ server communication. The sample client I am using is based on polling based approach. Can anyone using event based message communication (C++)?
If yes, I would kindly request you to share the sample,
Thanks…

Pazhaniyappan
- 122
- 1
- 10
0
votes
2 answers
Implementation of Message Bus C# microservices
We have few micro services created in .net core 1.0, we are following CQRS pattern and we are also using swagger which list all api's, we have a requirement were in we need to implement Message Bus(not decided yet might be AWS), this message bus…

PaTHP
- 315
- 3
- 17
0
votes
2 answers
Postal.js subscription not receiving post from other react component
I have two decoupled components running on the one page and would like to use Postal.js to send a message when one is clicked to the other.
When the first component is clicked it publishes a post:
postal.publish({
channel: 'carts',
topic:…

Matt Hough
- 1,049
- 2
- 13
- 27
0
votes
1 answer
Liferay 7 MessageListener osgi module
When I worked with the liferay 6.1 I created an application that received the message.
Java class:
public class MailMessageBus implements MessageListener
\src\main\webapp\WEB-INF\src\META-INF\messaging-spring.xml file:

a.gaykevich
- 51
- 2
- 4