diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-05 13:26:26 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-05 13:26:26 +0000 |
commit | f3ccb50d2713fdb94d4785fcfff37bc42b743e6f (patch) | |
tree | 032499118c88146a86aede2d89fa707bb242edc7 /lib/soap/soap.rb | |
parent | 22ba03db394c1355050f15c571479836db163c9e (diff) | |
download | ruby-f3ccb50d2713fdb94d4785fcfff37bc42b743e6f.tar.gz ruby-f3ccb50d2713fdb94d4785fcfff37bc42b743e6f.tar.xz ruby-f3ccb50d2713fdb94d4785fcfff37bc42b743e6f.zip |
* lib/soap/netHttpClient.rb: proxy support did not work. fixed.
* lib/soap/property.rb: add class methods for loading property from
stream/file/propertyfile. propertyfile is a file which is located at
somedir in $:.
* lib/soap/soap.rb, lib/soap/wsdlDriver.rb, lib/soap/rpc/driver.rb,
lib/wsdl/importer.rb: load property from propertyfile 'soap/property'
e.g. /usr/local/lib/ruby/site_ruby/1.8/soap/property.
* test/soap/test_property.rb, test/soap/test_streamhandler.rb: new file.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/soap/soap.rb')
-rw-r--r-- | lib/soap/soap.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/soap/soap.rb b/lib/soap/soap.rb index b08282318..ea2b4db2e 100644 --- a/lib/soap/soap.rb +++ b/lib/soap/soap.rb @@ -14,6 +14,7 @@ module SOAP Version = '1.5.2' +PropertyName = 'soap/property' EnvelopeNamespace = 'http://schemas.xmlsoap.org/soap/envelope/' EncodingNamespace = 'http://schemas.xmlsoap.org/soap/encoding/' |