service.setQName(wsdlQName);
PortImpl port = (PortImpl) def.createPort();
port.setName(wsdlQName.getLocalPart() + WSDL_PORT_SUFFIX);
port.setBinding(binding);
service.addPort(port);
SOAPAddressImpl soapAddress = new SOAPAddressImpl();
soapAddress.setLocationURI(serviceLocation);
port.addExtensibilityElement(soapAddress);
def.addService(service);