Examples of logOutgoingRequest()


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

    public void dispatch(final SipServletRequestImpl req) {
        try {
            Reporter reporter = getReporter();
            if (reporter != null) {
                reporter.logOutgoingRequest(Reporter.InterceptionType.LAYER, req, GrizzlyNetworkManager.class.getSimpleName());
            }

            connectionManager.send(req);

            if (SipMonitoring.isEnabled(SipMonitoring.NETWORK_MANAGER)) {
View Full Code Here

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

            cancel.pushTransactionDispatcher(lastProvisionalResponse.getRequestImpl().getProxyContext());

            Reporter reporter = ApplicationDispatcher.getInstance().getServletReporters();
            if (reporter != null) {
                String interceptedAt = cancel.getApplicationSessionImpl().getApplicationName() + "/" + cancel.getSessionImpl().getHandler();
                reporter.logOutgoingRequest(Reporter.InterceptionType.SERVLET, cancel, interceptedAt);
            }

            SipContainerThreadPool.getInstance().execute(new Callable() {
                    // execute in another thread...
                    public Object call() throws Exception {
View Full Code Here

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

                if (cancel != null) {
                    Reporter reporter = ApplicationDispatcher.getInstance().getServletReporters();
                    if (reporter != null) {
                        String interceptedAt = cancel.getApplicationSessionImpl().getApplicationName() + "/" + cancel.getSessionImpl().getHandler();
                        reporter.logOutgoingRequest(Reporter.InterceptionType.SERVLET, cancel, interceptedAt);
                    }

                    // lets CANCEL this branch outside synchronized block...
                    SipContainerThreadPool.getInstance().execute(new Callable() {
                            // execute in another thread...
View Full Code Here

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

        forward.setTransactionRequest(getRequestImpl());

        Reporter reporter = ApplicationDispatcher.getInstance().getServletReporters();
        if (reporter != null) {
            String interceptedAt = forward.getApplicationSessionImpl().getApplicationName() + "/" + forward.getSessionImpl().getHandler();
            reporter.logOutgoingRequest(Reporter.InterceptionType.SERVLET, forward, interceptedAt);
        }
       
        if (getOutboundInterface() == null) {
            setOutboundInterface(getProxyImpl().getOutboundInterface());
        }
View Full Code Here

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

        }
       
        Reporter reporter = ApplicationDispatcher.getInstance().getServletReporters();
        if (reporter != null) {
            String interceptedAt = req.getApplicationSessionImpl().getApplicationName() + "/" + req.getSessionImpl().getHandler();
            reporter.logOutgoingRequest(Reporter.InterceptionType.SERVLET, req, interceptedAt);
        }
       

        SipContainerThreadPool.getInstance().execute(new Callable() {
                public Object call() throws Exception {
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.