static final String REG_PORT = allocatePort(ServerXMLBinding.class);
static final String WRAP_PORT = allocatePort(ServerXMLBinding.class, 1);
static final String MIX_PORT = allocatePort(ServerXMLBinding.class, 2);
protected void run() {
Object implementor = new GreeterImpl();
String address = "http://localhost:" + REG_PORT + "/XMLService/XMLPort";
Endpoint.publish(address, implementor);
Object implementor1 = new org.apache.hello_world_xml_http.wrapped.GreeterImpl();
address = "http://localhost:" + WRAP_PORT + "/XMLService/XMLPort";