Examples of logOutgoingResponse()


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

            }
           
            // trigger reporter for network manager
            Reporter reporter = GrizzlyNetworkManager.getInstance().getReporter();
            if (reporter != null) {
                reporter.logOutgoingResponse(Reporter.InterceptionType.LAYER, resp, GrizzlyNetworkManager.class.getSimpleName());
            }

            // SipResponse
            if (SipMonitoring.isEnabled(SipMonitoring.NETWORK_MANAGER)) {
                if (((TCPSelectorHandler)streamHandler).getInet() != null) {
View Full Code Here

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

                resp.serializeForReTransmission(sendBufferSize);
            }

            Reporter reporter = getReporter();
            if (reporter != null) {
                reporter.logOutgoingResponse(Reporter.InterceptionType.LAYER, resp, GrizzlyNetworkManager.class.getSimpleName());
            }

            // Cannot use recursive call here because it will loop.
            connectionManager.send(resp);
View Full Code Here

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

        final SipServletResponseImpl forward = resp;
       
        Reporter reporter = ApplicationDispatcher.getInstance().getServletReporters();
        if (reporter != null) {
            String interceptedAt = resp.getApplicationSessionImpl().getApplicationName() + "/" + resp.getSessionImpl().getHandler();
            reporter.logOutgoingResponse(Reporter.InterceptionType.SERVLET, resp, interceptedAt);
        }
       
        SipContainerThreadPool.getInstance().execute(new Callable() {
                public Object call() throws Exception {
                        // Activate the dialog lifecycle u-o-w
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.