if (!webService.name().equals(""))
portTypeName = webService.name();
portType = WSDLFactory.eINSTANCE.createPortType();
portType.setQName(new QName(wsdlDef.getQName().getNamespaceURI(),portTypeName));
portType.setUndefined(false);
wsdlDef.addPortType(portType);
typePortTypeMap.put(ctClass, portType);
javax.jws.soap.SOAPBinding soapBinding = ctClass.getAnnotation(javax.jws.soap.SOAPBinding.class);
if (soapBinding != null)
typeSoapBindingMap.put(ctClass, soapBinding);
}