@Override
public void start(final StartContext ctx) throws StartException {
ROOT_LOGGER.starting(name);
try {
EndpointPublisherImpl publisher = new EndpointPublisherImpl(hostInjector.getValue().getHost(), true);
wsctx = publisher.publish(ctx.getChildTarget(), context, loader, urlPatternToClassName, jbwmd, wsmd);
} catch (Exception e) {
throw new StartException(e);
}
}