WSDLService service = wsdlComponentFactory.createService();
service.setName(new QName(ServiceName));
WSDLEndpoint endpoints = wsdlComponentFactory.createEndpoint();
endpoints.setBinding(binding);
endpoints.setName(new QName(ServiceName + PORT_NAME_SUFFIX));
SOAPAddressImpl address = new SOAPAddressImpl();
address.setLocationURI("http://127.0.0.1:8080/axis2/services/" + ServiceName); // ???
endpoints.addExtensibilityElement(address);
service.setEndpoint(endpoints);
return service;
}