In: |
soap/encodingstyle/handler.rb
|
Parent: | Object |
charset | [R] | |
generate_explicit_type | [RW] |
# File soap/encodingstyle/handler.rb, line 32 def each @@handlers.each do |key, value| yield(value) end end
# File soap/encodingstyle/handler.rb, line 51 def initialize(charset) @charset = charset @generate_explicit_type = true @decode_typemap = nil end
# File soap/encodingstyle/handler.rb, line 83 def decode_tag_end(ns, name) raise NotImplementError.new('Method decode_tag_end must be defined in derived class.') end
# File soap/encodingstyle/handler.rb, line 87 def decode_text(ns, text) raise NotImplementError.new('Method decode_text must be defined in derived class.') end
# File soap/encodingstyle/handler.rb, line 47 def decode_typemap=(complextypes) @decode_typemap = complextypes end
encode interface.
Returns a XML instance as a string.
# File soap/encodingstyle/handler.rb, line 61 def encode_data(generator, ns, qualified, data, parent) raise NotImplementError.new('Method encode_data must be defined in derived class.') end