Package org.objectweb.celtix.jbi.se

Examples of org.objectweb.celtix.jbi.se.CeltixServiceUnit


                    if (exchange != null) {
                        // REVISIT: serialized message handling not such a
                        // good idea.
                        // REVISIT: can there be more than one ep?
                        ServiceEndpoint ep = exchange.getEndpoint();
                        CeltixServiceUnit csu = suManager.getServiceUnitForEndpoint(ep);
                        ClassLoader oldLoader = Thread.currentThread().getContextClassLoader();
                       
                        try {
                            Thread.currentThread().setContextClassLoader(csu.getClassLoader());
                            if (csu != null) {
                                LOG.finest("dispatching to Celtix service unit");
                                dispatch(exchange, callback);
                            } else {
                                LOG.info("no CeltixServiceUnit found");
View Full Code Here

TOP

Related Classes of org.objectweb.celtix.jbi.se.CeltixServiceUnit

Copyright © 2018 www.massapicom. 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.