# File lib/soap/encodingstyle/handler.rb, line 32 32: def each 33: @@handlers.each do |key, value| 34: yield(value) 35: end 36: end
# File lib/soap/encodingstyle/handler.rb, line 28 28: def handler(uri) 29: @@handlers[uri] 30: end
# File lib/soap/encodingstyle/handler.rb, line 94 94: def decode_epilogue 95: end
# File lib/soap/encodingstyle/handler.rb, line 91 91: def decode_prologue 92: end
decode interface.
Returns SOAP/OM data.
# File lib/soap/encodingstyle/handler.rb, line 79 79: def decode_tag(ns, name, attrs, parent) 80: raise NotImplementError 81: end
# File lib/soap/encodingstyle/handler.rb, line 83 83: def decode_tag_end(ns, name) 84: raise NotImplementError 85: end
# File lib/soap/encodingstyle/handler.rb, line 87 87: def decode_text(ns, text) 88: raise NotImplementError 89: end
# File lib/soap/encodingstyle/handler.rb, line 47 47: def decode_typemap=(definedtypes) 48: @decode_typemap = definedtypes 49: end
# File lib/soap/encodingstyle/handler.rb, line 97 97: def encode_attr_key(attrs, ns, qname) 98: if qname.namespace.nil? 99: qname.name 100: else 101: unless ns.assigned_as_tagged?(qname.namespace) 102: Generator.assign_ns!(attrs, ns, qname.namespace) 103: end 104: ns.name_attr(qname) 105: end 106: end
encode interface.
Returns a XML instance as a string.
# File lib/soap/encodingstyle/handler.rb, line 61 61: def encode_data(generator, ns, data, parent) 62: raise NotImplementError 63: end
# File lib/soap/encodingstyle/handler.rb, line 65 65: def encode_data_end(generator, ns, data, parent) 66: raise NotImplementError 67: end
# File lib/soap/encodingstyle/handler.rb, line 72 72: def encode_epilogue 73: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.