private final QName serviceName = new QName("http://apache.org/locator", "LocatorService");
public static class MyServer extends AbstractBusTestServerBase {
protected void run() {
Object implementor = new LocatorServiceImpl();
String address = "http://localhost:" + PORT + "/services/LocatorService";
Endpoint.publish(address, implementor);
}