开发者

Reading the transactional dead-letter queue by wcf

开发者 https://www.devze.com 2022-12-22 03:09 出处:网络
I\'m trying to create a dead letter queue service in wcf with following service configuration: <service name=\"NotificationDeadLetterQueueService\">

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 ot开发者_如何学运维her examples in the net.

0

精彩评论

暂无评论...
验证码 换一张
取 消