FileDocCategorySizeDatePackage
JAXRPCRuntimeEndpointHelper.javaAPI DocGlassfish v2 API3739Fri May 04 22:30:26 BST 2007com.sun.enterprise.jbi.serviceengine.bridge

JAXRPCRuntimeEndpointHelper

public class JAXRPCRuntimeEndpointHelper extends Object
author
mu125243

Fields Summary
Constructors Summary
public JAXRPCRuntimeEndpointHelper()
Creates a new instance of JAXWSRuntimeEndpointHelper

    
Methods Summary
private static java.lang.ObjectpopulateEjbRuntimeInfo(com.sun.enterprise.jbi.serviceengine.core.ServiceEngineEndpoint endpt)

        try {
            WebServiceEjbEndpointRegistry registry =
                    WebServiceEjbEndpointRegistry.getRegistry();
            
            EjbRuntimeEndpointInfo ejbRtEndptInfo =
                    registry.getEjbWebServiceEndpoint(endpt.getURI(), "POST", null);
            
            
            return ejbRtEndptInfo;
        } catch(Exception e) {
            throw new ServiceEngineException(e.getMessage());
        }
    
public static java.lang.ObjectpopulateRuntimeInfo(com.sun.enterprise.jbi.serviceengine.core.ServiceEngineEndpoint endpt)

        Object runtimeInfo = null;
        if(endpt.isImplementedByEJB()) {
            runtimeInfo = populateEjbRuntimeInfo(endpt);
        } /*else {
            runtimeInfo = populateWebRuntimeInfo(endpt);
        }*/
    
        return runtimeInfo;