/**
* Runs the service.
*/
public void run() {
this.httpServices = new HttpBasedServices(this.port);
this.xservice = this.httpServices.addService(new XSoapDocLiteralService(Echo.SERVICE_NAME,
Service.MATH_DIRECTORY_NAME + File.separator + Echo.WSDL_PATH, new EchoImpl()));
this.xservice.addHandler(new StickySoapHeaderHandler("retrieve-lead-header", LeadContextHeader.TYPE));
this.xservice.startService();
}