Questions tagged [dead-letter]
250 questions
0
votes
1 answer
Service Bus for Windows Server - Deferred messages with TTL behavior
When using deferred messages the time-to-live is being ignored, is it possible to have this behavior and send the messages to dead letter queues?
If so, how do I achieve this?

Tom Kerkhove
- 2,151
- 5
- 26
- 42
0
votes
1 answer
How to create a WCF dead-letter service for MSMQ3.0
I'm trying to create a service reading the dead-letter from the transactional system dead letter queue.
The service configuration looks like this:

Enyra
- 17,542
- 12
- 35
- 44
0
votes
1 answer
Camel Dead Letter channel
I have a route:
from("restlet://RestletBean/{id}?restletMethod=GET")
.setHeader(Exchange.HTTP_METHOD, constant("GET"))
.setHeader(Exchange.HTTP_URI, simple("http://x.y.z.com?id={header.id}"))
.to("http://dummyHost")
When I don't give an…

bks4line
- 485
- 3
- 10
- 23
0
votes
1 answer
Test Dead Letter Channel in Apache Camel
I've been following the examples of sending a message to the Dead Letter Channel but haven't worked out how to test this. Messages do get routed to the DLC but I want to make sure this is tested.
For example, how would I test that the message is…

user2786802
- 45
- 5
0
votes
1 answer
NServiceBus 4.03, when the queue doesnt exist, message is being sent to Transaction Dead Letter Q
I have Distributor/Worker model.
Machine A - Distributor
Machine B - Worker
When the worker B is trying the send message to Distributor on a wrong Q name, its putting the message into Transactional Dead Letter Q.
I was expecting the message to…

Miral
- 5,968
- 16
- 57
- 85
0
votes
1 answer
Restore from dead letter queue
I receive all JMS messages from Queue1 all the time and trying to process it. If I tried to process 5 times, and rolled back 5 times, I want ActiveMQ to put the message to a different queue for some period of time (e.g. 5 minutes).
How can I…

surlac
- 2,961
- 2
- 22
- 31
0
votes
1 answer
DeadLetterService in Jboss
We have application deployed in Jboss SOA platform.Performance point of view, we had commented out the DeadLetterService in jboss-esb.xml. So when any exception occurs or message is not delivered to 3rd party, it should not go to DLQ. But now we are…

Ashwini
- 63
- 2
- 8
-1
votes
2 answers
How to implement a Dead Letter Queue using AWS
I'm trying to implement a dead letter queue for failed lambda events. I created an SQS queue and two lambdas. One lambda only throws an error and the other listens to the SQS queue and is triggered when the queue receives a message and logs the…

Sonny Fishback
- 1
- 3
-1
votes
1 answer
Getting RabbitMq to behave as I want (dead letter and re-queue on errors)
I have a simple rabbit set up that is currently doing what I want...
It publishes messages based on the type of message. Each type gets its own queue.
When messages are published they sit on the queue even if there is no consumer to consume them…

Loofer
- 6,841
- 9
- 61
- 102
-1
votes
1 answer
Camel Dead Letter Channel for all exceptions
Im creating a dead letter channel errorhandler like below
errorHandler(deadLetterChannel("direct:myDLC").useOriginalMessage().maximumRedeliveries(1));
from("direct:myDLC")
.bean(MyErrorProcessor.class);
The Bean MyErrorProcessor should be able to…

Balaji Kannan
- 407
- 6
- 24