Hi Pranitha,
If you trying to configure it for native stores , Then below is the client API’s that you use to configure.
i.e create a dead-event queue
nChannelAttributes deadca = new nChannelAttributes(DLQ_NAME);
nQueue dead = sess.createQueue(deadca);
and then
nChannelAttributes nca = new nChannelAttributes(TOPIC_NAME);
nca.setDeadEventHandler(dead);
sess.createChannel(nca);
You can do the same using Enterprise manager
Just to add on that broker’s dead letter queue & UM dead event store differs in functionality.
Let me know if you need further help on it.
Regards,
Vijaya
#webMethods#Universal-Messaging-Broker