Solace Community is getting a facelift!
On March 3rd we will be starting the process of migrating Solace Community to a new platform. As a result, Solace Community will go in to a temporary read-only state. You will still be able to come onto Solace Community and search through posts to find answers, but you won't be able to ask questions, post comments, or react in any way.
We hope to have the migration complete by Wednesday March 5th (or sooner), so please keep an eye out!
Solace listener blocks http listener
Hi Team, I'm trying to use solace message receiver is my python project . I'm successfully able to connect with solace queue and receiving messages but once solace service is connected I'm not able to procced with http request on same server . Could you help guide me on this ?
Answers
-
I am not sure what is meant by "not able to proceed with http request on same server" but if both consumers (the Python and HTTP ones) are both bound to the same queue, if the queue is
exclusive
(the default), then only the 1st to bind (Python) would be receiving messages.If you require both clients to receive messages, you could make the queue
non-exclusive
. But note that with guaranteed messaging a message is only delivered to 1 consumer. In this case, your Python consumer would receive msg1 and the HTTP msg2 and then back to Python for msg3, etc.1