Hello,
I'm trying to create a dead letter queue service in wcf with following service configuration:
<service name="NotificationDeadLetterQueueService">
<endpoint
address="net.msmq://localhost/system$;DeadXact"
binding="netMsmqBinding"
contract="INotificationService"
/>
</service>
If I start the service host, I get a System.Messaging.MessageQueueException saying "Invalid queue path name". What is wrong in the transactional system dead letter queue adress? I can not find any other examples in the net.
Thanks for help, Eny