public static class Server extends AbstractBusTestServerBase {
protected void run() {
String address;
Object implementor = new RPCLitGreeterImpl();
address = "http://localhost:" + PORT + "/SOAPServiceRPCLit/SoapPort";
Endpoint.publish(address, implementor);
address = "http://localhost:" + PORT + "/TestRPCWsdl";
Endpoint.publish(address, new MyService());
}