Package org.apache.cxf.greeter_control

Examples of org.apache.cxf.greeter_control.GreeterImplBaseNoWsdl


import org.apache.cxf.testutil.common.AbstractBusTestServerBase;

public class ServerGreeterBaseNoWsdl extends AbstractBusTestServerBase {

    protected void run() {
        Object implementor = new GreeterImplBaseNoWsdl();
        String address = "http://localhost:9020/SoapContext/GreeterPort";
        Endpoint.publish(address, implementor);
    }
View Full Code Here


public class ServerGreeterBaseNoWsdl extends AbstractBusTestServerBase {

    protected void run() {
       
        Object implementor = new GreeterImplBaseNoWsdl();
        String address = "http://localhost:"
            + TestUtil.getPortNumber(ServerGreeterBaseNoWsdl.class)
            + "/SoapContext/GreeterPort";
        Endpoint.publish(address, implementor);
    }
View Full Code Here

TOP

Related Classes of org.apache.cxf.greeter_control.GreeterImplBaseNoWsdl

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.