Flowdock
method

find_handler

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::Parser
find_handler(encodingstyle) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/parser.rb, line 237
  def find_handler(encodingstyle)
    unless @handlers.key?(encodingstyle)
      handler_factory = SOAP::EncodingStyle::Handler.handler(encodingstyle) ||
        SOAP::EncodingStyle::Handler.handler(EncodingNamespace)
      handler = handler_factory.new(@parser.charset)
      handler.decode_typemap = @decode_typemap
      handler.decode_prologue
      @handlers[encodingstyle] = handler
    end
    @handlers[encodingstyle]
  end
Register or log in to add new notes.