Port port = new PortImpl();
SOAPAddress soapAddress = new SOAPAddressImpl();
soapAddress.setElementType(SOAPConstants.Q_ELEM_SOAP_ADDRESS);
soapAddress.setLocationURI(url);
port.addExtensibilityElement(soapAddress);
port.setName(getName() + "Port" + i);
port.setBinding(binding);
service.addPort(port);
}
}