if ((msgReceiver != null) && (msgReceiver instanceof CallbackReceiver)) {
Object callback = ((CallbackReceiver) msgReceiver)
.lookupCallback(bean.getApplicationMessageMessageId());
if (callback != null) {
AxisCallback axisCallback = ((AxisCallback) callback);
axisCallback.onError(new Exception(message));
axisCallback.onComplete();
}
}
}
}