get the soap:binding
(self)
| 556 | self.add_operations(self.root, definitions) |
| 557 | |
| 558 | def soaproot(self): |
| 559 | """ get the soap:binding """ |
| 560 | for ns in (soapns, soap12ns): |
| 561 | sr = self.root.getChild('binding', ns=ns) |
| 562 | if sr is not None: |
| 563 | return sr |
| 564 | return None |
| 565 | |
| 566 | def add_operations(self, root, definitions): |
| 567 | """ Add <operation/> children """ |