method
find_handler
ruby latest stable - Class:
SOAP::SOAPGenerator
find_handler(encodingstyle)private
No documentation available.
# File lib/soap/generator.rb, line 248
def find_handler(encodingstyle)
unless @handlers.key?(encodingstyle)
handler = SOAP::EncodingStyle::Handler.handler(encodingstyle).new(@charset)
handler.generate_explicit_type = @generate_explicit_type
handler.encode_prologue
@handlers[encodingstyle] = handler
end
@handlers[encodingstyle]
end