Flowdock
method

set_options

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::HTTPStreamHandler
set_options() private

No documentation

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

Hide source
# File lib/soap/streamHandler.rb, line 123
  def set_options
    HTTPConfigLoader.set_options(@client, @options)
    @charset = @options["charset"] || XSD::Charset.xml_encoding_label
    @options.add_hook("charset") do |key, value|
      @charset = value
    end
    @wiredump_dev = @options["wiredump_dev"]
    @options.add_hook("wiredump_dev") do |key, value|
      @wiredump_dev = value
      @client.debug_dev = @wiredump_dev
    end
    set_cookie_store_file(@options["cookie_store_file"])
    @options.add_hook("cookie_store_file") do |key, value|
      set_cookie_store_file(value)
    end
    ssl_config = @options["ssl_config"]
    basic_auth = @options["basic_auth"]
    @options.lock(true)
    ssl_config.unlock
    basic_auth.unlock
  end
Register or log in to add new notes.