I'm using a WCF Service with netMsmqBinding and WAS. Everything seems to work well (including remote posting to the queue thanks to stackoverflow community:)).
The remaining problem now is that the service processes a few messages then stops with a message in the event log like "The service '~/registrator' does not exist.". It appears that I have a queue with that name that has nothing to do with my service. If I remove that queue, another message of the same type appears for another queue, etc... So it seems that the msmqListener service try to read from all queues and match a service endpoint for each of them ?
The question would then be : how to tell netMsmqListener service to only listen for some queues or at least not failing when an endpoint can't be found for some of those ?