Invoke the filter.
MessageTraceFactory mtf = MessageTraceFactory.getInstance();
// SOAP request
if ( stage.equals(Filter.PROCESS_REQUEST) ) {
// delegates to message trace factory for holding
mtf.processRequest(context, _applicationId);
// SOAP response
} else if ( stage.equals(Filter.PROCESS_RESPONSE) ) {
mtf.processResponse(context);
} else if (stage.equals(Filter.POST_PROCESS_RESPONSE) ) {
MessageTrace mt = mtf.postProcessResponse(context);
// adds the newly created message trace to the pool
_handler.addMessage(mt);
}