我正在尝试使用以下服务配置在wcf中创建一个死信队列服务:
<service name="NotificationDeadLetterQueueService">
<endpoint
address="net.msmq://localhost/system$;DeadXact"
binding="netMsmqBinding"
contract="INotificationService"
/>
</service>
如果我启动服务主机,则会收到System.Messaging.MessageQueueException,指出“无效的队列路径名”。交易系统死信队列地址有什么问题?我在网上找不到任何其他例子。