summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-23 03:42:01 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-02-23 03:42:01 +0000
commit70db160072ccfa9821771544a17242655bae0b72 (patch)
treee3aa100d07ed5a9952bde6fe94885f6a9619e952 /lib
parentc3bcbe03c46356b05620430d88f24028150419ee (diff)
downloadruby-70db160072ccfa9821771544a17242655bae0b72.tar.gz
ruby-70db160072ccfa9821771544a17242655bae0b72.tar.xz
ruby-70db160072ccfa9821771544a17242655bae0b72.zip
* lib/xmlrpc/client.rb (XMLRPC::Client::do_rpc): Make the
Content-Length parameter optional for responses in xmlrpc/client.rb; suggested by Daniel Berger <Daniel.Berger@qwest.com> and approved by the maintainer. * lib/xmlrpc/create.rb (XMLRPC::Create::conv2value): Add DateTime support to xmlrpc; approved by the maintainer. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11816 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/xmlrpc/client.rb2
-rw-r--r--lib/xmlrpc/create.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/xmlrpc/client.rb b/lib/xmlrpc/client.rb
index dadd3279f..10f547b63 100644
--- a/lib/xmlrpc/client.rb
+++ b/lib/xmlrpc/client.rb
@@ -558,7 +558,7 @@ module XMLRPC
expected = resp["Content-Length"] || "<unknown>"
if data.nil? or data.size == 0
raise "Wrong size. Was #{data.size}, should be #{expected}"
- elsif expected.to_i != data.size and resp["Transfer-Encoding"].nil?
+ elsif expected != "<unknown>" and expected.to_i != data.size and resp["Transfer-Encoding"].nil?
raise "Wrong size. Was #{data.size}, should be #{expected}"
end
diff --git a/lib/xmlrpc/create.rb b/lib/xmlrpc/create.rb
index 9a3df0d83..3c2bbd24e 100644
--- a/lib/xmlrpc/create.rb
+++ b/lib/xmlrpc/create.rb
@@ -241,7 +241,7 @@ module XMLRPC
@writer.ele("data", *a)
)
- when Time, Date
+ when Time, Date, ::DateTime
@writer.tag("dateTime.iso8601", param.strftime("%Y%m%dT%H:%M:%S"))
when XMLRPC::DateTime