diff options
| author | jeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-24 19:48:06 +0000 |
|---|---|---|
| committer | jeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-24 19:48:06 +0000 |
| commit | acd6cfa5b9d83613370f944c253e6f3e2a62ca6e (patch) | |
| tree | fb4317edf9f41aae9763211bc1675a5dfad8831a | |
| parent | 1593b25d412e47257154525363fade2f4ff61911 (diff) | |
| download | ruby-acd6cfa5b9d83613370f944c253e6f3e2a62ca6e.tar.gz ruby-acd6cfa5b9d83613370f944c253e6f3e2a62ca6e.tar.xz ruby-acd6cfa5b9d83613370f944c253e6f3e2a62ca6e.zip | |
* lib/xmlrpc/client.rb (XMLRPC::Client#do_rpc): Improving the error
message for Content-Type check failures. [ruby-core:12163]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/xmlrpc/client.rb | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -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): diff --git a/lib/xmlrpc/client.rb b/lib/xmlrpc/client.rb index 10f547b63..fca0725ed 100644 --- a/lib/xmlrpc/client.rb +++ b/lib/xmlrpc/client.rb @@ -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 |
