JavaMethod jmethod,
boolean isSOAP12)
throws WSDLException {
// generate soap binding action
SoapOperation soapOperation = SOAPBindingUtil.createSoapOperation(extensionRegistry, isSOAP12);
soapOperation.setStyle(jmethod.getSoapStyle().name().toLowerCase());
if (jmethod.getSoapAction() != null && !jmethod.getSoapAction().equals("")) {
soapOperation.setSoapActionURI(jmethod.getSoapAction());
}
operation.addExtensibilityElement(soapOperation);
generateInputSoapBody(jmethod, operation, jmethod.getRequest(), isSOAP12);