Package org.apache.cxf.ws.discovery.internal

Examples of org.apache.cxf.ws.discovery.internal.WSDiscoveryServiceImpl.register()


        try {
            Bus bus = BusFactory.getDefaultBus();
            Endpoint ep = Endpoint.publish("http://localhost:51919/Foo/Snarf", new FooImpl());
            WSDiscoveryServiceImpl service = new WSDiscoveryServiceImpl(bus);
            service.startup();
            HelloType h = service.register(ep.getEndpointReference());

           
           
            bus  = BusFactory.newInstance().createBus();
            new LoggingFeature().initialize(bus);
View Full Code Here


            WSDiscoveryServiceImpl service = new WSDiscoveryServiceImpl(null);
            service.startup();
           
           
            WSDiscoveryClient c = new WSDiscoveryClient();
            HelloType h = service.register(ep.getEndpointReference());
           
           
            System.out.println("1");
            ProbeMatchesType pmts = c.probe(new ProbeType());
            System.out.println("2");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.