Package org.wso2.carbon.tracer.module

Examples of org.wso2.carbon.tracer.module.TracePersister.saveMessage()


                                MessageContext msgCtxt,
                                long msgSequenceNumber) {
        TracePersister tracePersister =
            (TracePersister) msgCtxt.getConfigurationContext().
                getAxisConfiguration().getParameter(TracerConstants.TRACE_PERSISTER_IMPL).getValue();
        return tracePersister.saveMessage(serviceName, operationName,
                                          msgCtxt.getFLOW(),
                                          msgCtxt,
                                          msgCtxt.getEnvelope().cloneOMElement(), msgSequenceNumber);
    }
}
View Full Code Here


                                String operationName,
                                MessageContext msgCtxt) {
        TracePersister tracePersister =
            (TracePersister) msgCtxt.getConfigurationContext().getAxisConfiguration()
                                    .getParameter(TracerConstants.TRACE_PERSISTER_IMPL).getValue();
        return tracePersister.saveMessage(serviceName, operationName,
                                          msgCtxt.getFLOW(), msgCtxt,
                                          (OMElement) msgCtxt.getProperty(TracerConstants.TEMP_IN_ENVELOPE),
                                          -1); // Use the temp envelope
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.