Service service = wsdlDefinition.createService();
service.setQName(this.getName());
Port port = wsdlDefinition.createPort();
SOAPAddress soapAddress = new SOAPAddressImpl();
soapAddress.setElementType(SOAPConstants.Q_ELEM_SOAP_ADDRESS);
soapAddress.setLocationURI(PortURL);
port.addExtensibilityElement(soapAddress);
port.setName(this.getName().getLocalPart() + "Port");
Map bindingsMap = wsdlDefinition.getBindings();
Collection bind_col = bindingsMap.values();