Package com.sun.enterprise.webservice.monitoring

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


    /**
     * Registers the Global Listener.
     */
    public void register() {
        WebServiceEngine wsEng =
        WebServiceEngineFactory.getInstance().getEngine();

        GlobalMessageListener gml = new GlobalMessageListenerImpl();
        AuthenticationListener al = new AuthenticationListenerImpl();
        wsEng.setGlobalMessageListener(gml);
        wsEng.addAuthListener(al);

        if (wsEng.getGlobalMessageListener() == null) {
            throw new RuntimeException("Message Listener could not be set");
        }
    }
View Full Code Here


    }
   
    private AppServWSRegistry() {
        final WSEndpointLifeCycleListener lifecycleListener = new WSEndpointLifeCycleListener();
       
        final WebServiceEngine engine = WebServiceEngineFactory.getInstance().getEngine();
        engine.addLifecycleListener(lifecycleListener);
       
        populateEndpoints(engine);
    }
View Full Code Here

TOP

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

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.