aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-04-28 01:19:52 +0000
committerLeon Breedt <bitserf@gmail.com>2005-04-28 01:19:52 +0000
commit896fea505b67f6dd842a58c72bcd919c593d925a (patch)
tree35c03f53bc2f890e7720608a27fabc0e6162eb72 /actionwebservice
parent74c9fd2ba50964cd44b9ff34a63bdecdfbd1ab62 (diff)
downloadrails-896fea505b67f6dd842a58c72bcd919c593d925a.tar.gz
rails-896fea505b67f6dd842a58c72bcd919c593d925a.tar.bz2
rails-896fea505b67f6dd842a58c72bcd919c593d925a.zip
add charset=utf-8 to SOAP response content type, and make base_uri
respect relative_url_root for the endpoint of SOAP messages (Shugo Maeda). if WSDL was retrieved over HTTPS, use HTTPS in the endpoint URLs as well. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1244 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice')
-rw-r--r--actionwebservice/CHANGELOG6
-rw-r--r--actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb12
-rw-r--r--actionwebservice/lib/action_web_service/protocol/soap_protocol.rb2
3 files changed, 17 insertions, 3 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index f4f21c57c4..9468d47488 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,5 +1,11 @@
*SVN*
+* Fix that generated WSDL was not using relative_url_root for base URI #1210 [Shugo Maeda]
+
+* Use UTF-8 encoding for SOAP responses #1211 [Shugo Maeda]
+
+* If the WSDL was retrieved over HTTPS, use HTTPS URLs in the WSDL too
+
* Fix that casting change in 0.7.0 would convert nil values to the default value for the type instead of leaving it as nil
diff --git a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
index 38fc7e4410..bce3f4e944 100644
--- a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
+++ b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
@@ -167,8 +167,16 @@ module ActionWebService # :nodoc:
private
def base_uri
- host = @request ? (@request.env['HTTP_HOST'] || @request.env['SERVER_NAME']) : 'localhost'
- 'http://%s/%s/' % [host, controller_name]
+ if @request
+ host = @request.env['HTTP_HOST'] || @request.env['SERVER_NAME']
+ relative_url_root = @request.relative_url_root
+ scheme = @request.ssl? ? 'https' : 'http'
+ else
+ host = 'localhost'
+ relative_url_root = ""
+ scheme = 'http'
+ end
+ '%s://%s%s/%s/' % [scheme, host, relative_url_root, controller_name]
end
def to_wsdl
diff --git a/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb b/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb
index fde992bf9a..b3f1be2ae4 100644
--- a/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb
+++ b/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb
@@ -93,7 +93,7 @@ module ActionWebService # :nodoc:
end
end
envelope = create_soap_envelope(response)
- Response.new(SOAP::Processor.marshal(envelope), 'text/xml', return_value)
+ Response.new(SOAP::Processor.marshal(envelope), 'text/xml; charset=utf-8', return_value)
end
def protocol_client(api, protocol_name, endpoint_uri, options={})