Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Changeset 1818

Show
Ignore:
Timestamp:
05/29/07 23:34:54 (2 years ago)
Author:
nahi
Message:
  • let wsdl2ruby.rb / xsd2ruby.rb set options loaded from property file ("soap/property" in a $LOAD_PATH) only if it has "client.protocol.http" definition.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/wsdl/xmlSchema/importer.rb

    r1769 r1818  
    6262      client.no_proxy = ::SOAP::Env::NO_PROXY 
    6363      if opt = ::SOAP::Property.loadproperty(::SOAP::PropertyName) 
    64         ::SOAP::HTTPConfigLoader.set_options(client, 
    65           opt["client.protocol.http"]) 
     64        http_opt = opt["client.protocol.http"] 
     65        ::SOAP::HTTPConfigLoader.set_options(client, http_opt) if http_opt 
    6666      end 
    6767      content = client.get_content(location)