Examples of logIncomingRequest()


Examples of com.ericsson.ssa.container.reporter.Reporter.logIncomingRequest()

        Reporter reporter = ApplicationDispatcher.getInstance().getServletReporters();
        if (reporter != null) {
            if (request != null) {
                SipServletRequest sipreq = (SipServletRequest) request;
                String interceptedAt = sipreq.getApplicationSession().getApplicationName() + "/" + servlet.getServletName();
                reporter.logIncomingRequest(Reporter.InterceptionType.SERVLET, sipreq, interceptedAt);
            } else {
                SipServletResponse sipresp = (SipServletResponse) response;
                String interceptedAt = sipresp.getApplicationSession().getApplicationName() + "/" + servlet.getServletName();
                reporter.logIncomingResponse(Reporter.InterceptionType.SERVLET, sipresp, interceptedAt);
            }
View Full Code Here

Examples of com.ericsson.ssa.container.reporter.Reporter.logIncomingRequest()

            req.pushApplicationDispatcher(_networkManager);

            // trigger reporter for network manager
            Reporter reporter = _networkManager.getReporter();
            if (reporter != null) {
                reporter.logIncomingRequest(Reporter.InterceptionType.LAYER, req, NetworkManager.class.getSimpleName());
            }

            _nextLayer.next(req);

            if (reporter != null) {
View Full Code Here

Examples of com.ericsson.ssa.container.reporter.Reporter.logIncomingRequest()

                            interceptedAt = this.getClass().getSimpleName();
                        } else {
                            interceptedAt = cancelPendingTrigger.getApplicationSessionImpl().getApplicationName() + "/"
                                    + cancelPendingTrigger.getSessionImpl().getHandler();
                        }
                        reporter.logIncomingRequest(Reporter.InterceptionType.SERVLET, cancel, interceptedAt);
                    }

                  // lets go directly to path node...
                  // this is unique in that the dialog we should lock on is not the dialog of the cancel
                  // but the one of the original request...
View Full Code Here

Examples of com.ericsson.ssa.container.reporter.Reporter.logIncomingRequest()

        if (nextLayer == null) {
            layer.dispatch(req);
        } else {
            Reporter reporter = nextLayer.getReporter();
            if(reporter != null) {
                reporter.logIncomingRequest(Reporter.InterceptionType.LAYER, req, layer.getClass().getSimpleName());
            }
           
            nextLayer.next(req);
           
            if(reporter != null) {
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.