Add our prefixes to the wsdl so that when users invoke methods and reference the prefixes, the will resolve properly.
(self)
| 62 | self.pushprefixes() |
| 63 | |
| 64 | def pushprefixes(self): |
| 65 | """ |
| 66 | Add our prefixes to the wsdl so that when users invoke methods |
| 67 | and reference the prefixes, the will resolve properly. |
| 68 | """ |
| 69 | for ns in self.prefixes: |
| 70 | self.wsdl.root.addPrefix(ns[0], ns[1]) |
| 71 | |
| 72 | def addports(self): |
| 73 | """ |