Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/wcf/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 通过wcf读取事务死信队列_C#_Wcf_Msmq_Dead Letter - Fatal编程技术网

C# 通过wcf读取事务死信队列

C# 通过wcf读取事务死信队列,c#,wcf,msmq,dead-letter,C#,Wcf,Msmq,Dead Letter,我正在尝试使用以下服务配置在wcf中创建死信队列服务: <service name="NotificationDeadLetterQueueService"> <endpoint address="net.msmq://localhost/system$;DeadXact" binding="netMsmqBinding" contract="INotificationService" /> </service> 如果启动服务主机,我会收到

我正在尝试使用以下服务配置在wcf中创建死信队列服务:

<service name="NotificationDeadLetterQueueService">
 <endpoint
  address="net.msmq://localhost/system$;DeadXact"
  binding="netMsmqBinding"
  contract="INotificationService"
/>
</service>


如果启动服务主机,我会收到一个System.Messaging.MessageQueueException,上面写着“无效队列路径名”。事务系统死信队列地址有什么问题?我在网络中找不到任何其他示例。

否该服务未使用已配置的NetMSMQBinding。在队列验证时引发异常,我发现队列验证仅针对专用队列进行,不适用于“$”在address.no中,该服务不使用已配置的NetMSMQBinding。在队列验证时引发异常,我发现队列验证仅针对专用队列进行,并且与地址中的“$”不起作用。