public class ServerNoBodyParts extends AbstractBusTestServerBase {
static final String PORT = allocatePort(ServerNoBodyParts.class);
protected void run() {
Object implementor = new NoBodyPartsImpl();
String address = "http://localhost:" + PORT + "/NoBodyParts/NoBodyPartsService";
Endpoint.publish(address, implementor);
}