Package com.sun.enterprise.webservice.monitoring

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


    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

TOP

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

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.