Package org.lestr.astenn.cxf

Examples of org.lestr.astenn.cxf.SOAPServer


        PluginsManager.getSingleton().registerPlugin(IPlugin.class, Plugin.class);
        PluginsManager.getSingleton().getConfiguration().getPermissionsManager().exposeLocalPlugin(IPlugin.class, Plugin.class);

        PluginsManager.getSingleton().registerPlugin(IPlugin.class, "soap:http://127.0.0.1:8078/" + IPlugin.class.getName() + "/" + Plugin.class.getName());

        server = new SOAPServer();
        server.start();

    }// END Method setUp
View Full Code Here


    public static void main(String... args) throws Exception {

        PluginsManager.getSingleton().registerPlugin(IPlugin.class, RemotePlugin.class);
        PluginsManager.getSingleton().getConfiguration().getPermissionsManager().exposeLocalPlugin(IPlugin.class, RemotePlugin.class);

        SOAPServer server = new SOAPServer();
        server.setPort(8067);
        server.start();
       
    }// END Method main
View Full Code Here

TOP

Related Classes of org.lestr.astenn.cxf.SOAPServer

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.