Iterator<WsdlBinding> bindingItr = wsdl.bindings().iterator();
while (bindingItr.hasNext()) {
WsdlBinding wsdlBinding = (WsdlBinding) bindingItr.next();
Iterator<WsdlBindingOperation> operationsItr = wsdlBinding.operations().iterator();
while (operationsItr.hasNext()) {
WsdlBindingOperation wsdlBindingOperation = (WsdlBindingOperation) operationsItr.next();
org.xmlpull.infoset.XmlElement input = wsdlBindingOperation.xml().element(INPUT);
org.xmlpull.infoset.XmlElement body = input.element(BODY);
if (body == null) {
// This is a HTTP binding so continue with the next
continue;