public class Server extends AbstractBusTestServerBase {
public static final String PORT = allocatePort(Server.class);
protected void run() {
String address;
Object implementor = new RPCLitGreeterImpl();
address = "http://localhost:" + PORT + "/SOAPServiceRPCLit/SoapPort";
Endpoint ep = Endpoint.create(implementor);
URL wsdl = getClass().getResource("/wsdl_systest/cxf2006.wsdl");
((EndpointImpl)ep).setWsdlLocation(wsdl.toString());