SOAPBinding soap = new SOAPBindingImpl();
soap.setTransportURI("http://schemas.xmlsoap.org/soap/http");
soap.setStyle("document");
binding.addExtensibilityElement(soap);
} else {
SOAP12Binding soap = new SOAP12BindingImpl();
soap.setTransportURI("http://schemas.xmlsoap.org/soap/http");
soap.setStyle("document");
binding.addExtensibilityElement(soap);
}
// Create operations
List<?> operations = portType.getOperations();
for (Iterator<?> iter = operations.iterator(); iter.hasNext();) {