Hi Vinay,
You are using JMS webMethods Libraries to receive JMS message to other application …
so , here ,hope you have imported all required wM JMS libraries files to respective target application(i.e CA APM).
Imported all required wM JMS libraries. Target application is a simple main program as below
import javax.jms.Message;
import javax.jms.MessageListener;
public class MFSMsgListener implements MessageListener {
@Override
public void onMessage(Message arg0) {
System.out.println(“\nReceived message:\n” + arg0);
}
}
Above message response JMSType: null
JMSDestination: null are null.
CA APM used to monitor the webMethods to identify the problems(it instruments java class files), it is not target application.
And, to cross verify whether wM is successfully sending mess or not you can subscribe same message in wM and check. If it successful in wM then their might some problem in your program.
Their is no program error, webMethods is not setting correct jms headers. Can you please run sample client program with MessageListener as explained above.
Thanks,
Surendhar
#Integration-Server-and-ESB#webMethods-General#webMethods