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