Hi @mystarrocks, there are two different ways to receive messages sent to a topic:
- Through a subscription;
- Through a queue which has a subscription.
You’ll only consume messages off a queue if your application is bound to the queue and consuming messages from it. In the API, you’ll need to create a flow bound to the queue.
A simple test is to publish a message when your consuming application is not connected. Then connect your consumer. Do you see the published message? If you don’t, you haven’t connected to your queues.