String address = "http://localhost:" + PORT + "/SoapContext/GreeterPort";
Endpoint ep = Endpoint.create(implementor);
Map<String, Object> properties = new HashMap<String, Object>();
properties.put("schema-validation-enabled", Boolean.TRUE);
ep.setProperties(properties);
ep.publish(address);
LOG.info("Published greeter endpoint.");
}
public static void main(String[] args) {
try {