method

ssl_config_int

ruby latest stable - Class: SOAP::HTTPConfigLoader

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

ssl_config_int(value)
public

No documentation available.

# File lib/soap/httpconfigloader.rb, line 97
  def ssl_config_int(value)
    if value.nil? or value.to_s.empty?
      nil
    else
      begin
        Integer(value)
      rescue ArgumentError
        ::SOAP::Property::Util.const_from_name(value.to_s)
      end
    end
  end