I am trying to write a wcf service that works over the rabbitMQ binding. I was able to successfully create a server and a client and have the client send messages to the server via the queue. I am confused about 2 issues.
As soon as the service is shutdown the queue is deleted. Is there a way to configure wcf and rabbitMQ so that the queue is persistent? This way I dont have to worry about losing data if my server crashes.
I can't seem to control the name of the queue. When I run
rabbitmqctl.bat list_queuesI see that the queue is calledamq.gen-3IgZD30XvTEQWNRsezSUUA==. Is there a way to control the name of the queue?