(bindingId != null) ? BindingID.parse(bindingId) : BindingID.parse(implementor.getClass()),
implementor, features);
}
public Endpoint createAndPublishEndpoint(String address, Object implementor, WebServiceFeature... features) {
Endpoint endpoint = new EndpointImpl(
BindingID.parse(implementor.getClass()), implementor, features);
endpoint.publish(address);
return endpoint;
}