Get the appropriate XML decoder. @return: Either the (basic|typed) unmarshaller. @rtype: L{UmxTyped}
(self, typed=True)
| 87 | return MxEncoded(self.schema()) |
| 88 | |
| 89 | def unmarshaller(self, typed=True): |
| 90 | """ |
| 91 | Get the appropriate XML decoder. |
| 92 | @return: Either the (basic|typed) unmarshaller. |
| 93 | @rtype: L{UmxTyped} |
| 94 | """ |
| 95 | if typed: |
| 96 | return UmxEncoded(self.schema()) |
| 97 | else: |
| 98 | return RPC.unmarshaller(self, typed) |