Package com.sun.enterprise.webservice.monitoring

Examples of com.sun.enterprise.webservice.monitoring.JAXWSEndpointImpl


                ThreadLocalInfo config = new ThreadLocalInfo(messageId, httpRequest);
                wsEngine.getThreadLocal().set(config);
            }
        }
                               
        JAXWSEndpointImpl endpt = null;
        try {
            if (wsEngine.getGlobalMessageListener()!=null) {
                if(endpoint.implementedByWebComponent()) {
                    endpt =
                        (JAXWSEndpointImpl)wsEngine.getEndpoint(httpRequest.getServletPath());
                } else {
                    endpt =
                        (JAXWSEndpointImpl)wsEngine.getEndpoint(httpRequest.getRequestURI());
                }            
                endpt.processRequest(ctxt);
            }
        } catch (Exception e) {
            // temporary - need to send back SOAP fault message
        }

  Packet pipeResponse = next.process(request);
      
        //Make the response packet available in the MessageContext
        ((SOAPMessageContextImpl)ctxt).setPacket(pipeResponse);
       
       
        try {
            if (endpt != null) {
                endpt.processResponse(ctxt);
            }
   
        } catch (Exception e) {
            // temporary - need to send back SOAP fault message
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.webservice.monitoring.JAXWSEndpointImpl

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.