Hi All -<br>I am having a problem with sending to a queue while another process is pulling from the same queue.&nbsp; I am using Basic.Publish to put the message and Basic.Get.&nbsp; Nothing fancy, queue is durable and messages are persistent.&nbsp; Two processes (applications) running on same machine, one receives a message (from remoting) and puts it on queue using Basic.Publish.&nbsp; Another process that runs every 5 minutes or so, wakes up and checks the queue using Basic.Get.&nbsp; If there is a message it enters a loop which sends the message down the pipe and then tries to get another message using same channel, until no more messages then closes channel and disconnects and goes back to sleep for another 5 minutes.<br>
<br>This all works until the processes line up - sending to queue at same time as trying to pull from queue.&nbsp; Then rabbit dies with a (badrpc,nodedown) status.&nbsp; If I restart rabbit, all the messages sent are still there (thankfully) but, I have to restart in order to send / receive another batch of messages.<br>
<br>So long winded question - I assume there should be no reason a queue cant send and receive messages at the same time, but is there some sort of setting or flag I need to check first or a syncronizing process I have to do?<br>
<br>Thanks very much for any help!!!<br>Steve<br>