logger.info("Server started on " + this.httpServices.getServerPort());
logger.info("Using WSDL for service description from " + BASE_WSDL_LOCATION);
this.xservice = this.httpServices.addService(new XSoapDocLiteralService(SERVICE_NAME, BASE_WSDL_LOCATION,
new ArrayGeneratorImpl()));
this.xservice.addHandler(new StickySoapHeaderHandler("retrieve-lead-header", LeadContextHeader.TYPE));
this.xservice.startService();
logger.info("Service started");
logger.info("Service WSDL available at " + getServiceWsdlLocation());
}