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