Solace listener blocks http listener

Options

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

  • amackenzie
    amackenzie Member, Employee Posts: 260 Solace Employee
    Options

    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.