* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Improving the error

message for Content-Type check failures. [ruby-core:12163]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
jeg2 2007-10-24 19:48:06 +00:00
parent 3c15e9efe3
commit 6f8537cf7f
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Wed Oct 25 04:46:53 2007 James Edward Gray II <jeg2@ruby-lang.org>
* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Improving the error
message for Content-Type check failures. [ruby-core:12163]
Wed Oct 25 03:45:08 2007 James Edward Gray II <jeg2@ruby-lang.org>
* lib/xmlrpc/utils.rb (XMLRPC::ParseContentType#parse_content_type):

View File

@ -549,9 +549,9 @@ module XMLRPC
ct = parse_content_type(resp["Content-Type"]).first
if ct != "text/xml"
if ct == "text/html"
raise "Wrong content-type: \n#{data}"
raise "Wrong content-type (received '#{ct}' but expected 'text/xml'): \n#{data}"
else
raise "Wrong content-type"
raise "Wrong content-type (received '#{ct}' but expected 'text/xml')"
end
end