diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-20 15:14:35 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-08-20 15:14:35 +0000 |
commit | c58a4a50326dd56b4cc81fd8379712a6058f3fb3 (patch) | |
tree | 3cd9d3048cb9f51b56b281daea0c4493880f8787 /lib | |
parent | 38769c7d4aaffb594136c04840344570a73f17f1 (diff) | |
download | ruby-c58a4a50326dd56b4cc81fd8379712a6058f3fb3.tar.gz |
* lib/wsdl/xmlSchema/importer.rb (WSDL::XMLSchema::Importer#fetch): add
a workaround for importing an WSDL whose path begins with drive
letter. [ruby-dev:26242]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9014 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/wsdl/xmlSchema/importer.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/wsdl/xmlSchema/importer.rb b/lib/wsdl/xmlSchema/importer.rb index 8829d5240c..f57bfd972a 100644 --- a/lib/wsdl/xmlSchema/importer.rb +++ b/lib/wsdl/xmlSchema/importer.rb @@ -48,12 +48,18 @@ private if location.scheme == 'file' or (location.relative? and FileTest.exist?(location.path)) content = File.open(location.path).read + elsif location.scheme and location.scheme.size == 1 and + FileTest.exist?(location.to_s) + # ToDo: remove this ugly workaround for a path with drive letter + # (D://foo/bar) + content = File.open(location.to_s).read else client = web_client.new(nil, "WSDL4R") client.proxy = ::SOAP::Env::HTTP_PROXY client.no_proxy = ::SOAP::Env::NO_PROXY if opt = ::SOAP::Property.loadproperty(::SOAP::PropertyName) - ::SOAP::HTTPConfigLoader.set_options(client, opt["client.protocol.http"]) + ::SOAP::HTTPConfigLoader.set_options(client, + opt["client.protocol.http"]) end content = client.get_content(location) end |