queue - MQJCA4004: Message delivery to an MDB 'null' failed with exception: 'deactivate of endpoint is in progress.' -
i have ear deployed on 7.0.0.3 server , web service deployed.
mq listener , running in server , corresponding mq host, channel name , mq queue name configured correctly. response queue.
whenever i'm getting data mq, i'm getting below error in systemout.log error
"mqjca4004: message delivery mdb 'null' failed exception: 'deactivate of endpoint in progress.' "
please me on this.
i've managed further analyze similar mqjca4004
error using this, kinda hackish, technique.
you need java decompiler preserves line numbers. jadclipse plugin eclipse can that. make sure have enabled:
debug settings [x] align code debugging
in window > preferences > java > decompiler
.
the standard intellij idea community decompiler has feature enabled.
the ibm class responsible producing mqjca4004
error
com.ibm.mq.connector.inbound.abstractworkimpl
when open (with decompilation enabled) you'll able find string mqjca4004
. place breakpoint there , start remote debugging application server. when hit breakpoint, you'll gain access context information including exception (with call stack) that's causing error.
Comments
Post a Comment