views:

205

answers:

1

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

A: 

Are you sure that your address is correct?

Have a look at some of these examples: http://msdn.microsoft.com/en-us/library/ms789035.aspx

Shiraz Bhaiji
My address "net.msmq://localhost/system$;DeadXact" should be correct, I use the same page for information like you posted.
Enyra