aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/lib/action_web_service/dispatcher
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-06-13 02:58:44 +0000
committerLeon Breedt <bitserf@gmail.com>2005-06-13 02:58:44 +0000
commit887e67c80e12308467526d731e74fafef9f07ac9 (patch)
treea306e4e94e7224ff2d6e8c4e028c3ed5f6c50855 /actionwebservice/lib/action_web_service/dispatcher
parent1fde44bfee41a35469084e1c73e2bccbd4e5fbe8 (diff)
downloadrails-887e67c80e12308467526d731e74fafef9f07ac9.tar.gz
rails-887e67c80e12308467526d731e74fafef9f07ac9.tar.bz2
rails-887e67c80e12308467526d731e74fafef9f07ac9.zip
Fix moduled controller URLs in WSDL, and add unit test to verify the generated URL.
See ticket #1428. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1408 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/lib/action_web_service/dispatcher')
-rw-r--r--actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb2
1 files changed, 1 insertions, 1 deletions
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 13a6fa55d3..21e3ccedbf 100644
--- a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
+++ b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
@@ -167,7 +167,7 @@ module ActionWebService # :nodoc:
host = request.env['HTTP_HOST'] || request.env['SERVER_NAME'] || 'localhost'
relative_url_root = request.relative_url_root
scheme = request.ssl? ? 'https' : 'http'
- '%s://%s%s/%s/' % [scheme, host, relative_url_root, controller_name]
+ '%s://%s%s/%s/' % [scheme, host, relative_url_root, self.class.controller_path]
end
def to_wsdl