Hi Vinay,
I am trying to monitor webMethods with CA APM to identify/troubleshoot the problems. It helps customers to solve the problem in few seconds. When I am receiving JMS message from webMethods as below
import javax.jms.Message;
import javax.jms.MessageListener;
public class MFSMsgListener implements MessageListener {
@Override
public void onMessage(Message arg0) {
// TODO Auto-generated method stub
System.out.println("\\nReceived message:\\n" + arg0);
}
}
JMSType: null
JMSDestination: null
both of above are null from mebthods from com.webMethods.rtl.event.RemoteDeliverer.onMessage class. But as per the java (jms) specification they shouldn’t be null.
Thanks a lot.
Thanks,
Surendhar