I'm trying to deploy a Rails app to Tomcat with a war file generated by Warbler. The war file deploys to /myproject-rails-gui without any problems but, when I try to access a page on the app, I'm getting:

ArgumentError: wrong number of arguments (1 for 0)
          send at org/jruby/RubyKernel.java:2097
       Railtie at /home/myproject/apache-tomcat-7.0.22/webapps/myproject-rails-gui/WEB-INF/gems/gems/actionpack-3.0.10/lib/action_controller/railtie.rb:54

It's failing when it tries to set relative_url_root. There are other Stack Overflow articles that (correctly) point out that relative_url_root is deprecated and you should set the RAILS_RELATIVE_URL_ROOT environment variable instead.

From the Rails project on GitHub

module ActionController
  class Base
    # Deprecated methods. Wrap them in a module so they can be overwritten by plugins
    # (like the verify method.)
    module DeprecatedBehavior #:nodoc:
      def relative_url_root
        ActiveSupport::Deprecation.warn "ActionController::Base.relative_url_root is ineffective. " <<
          "Please stop using it.", caller
      end

      def relative_url_root=
        ActiveSupport::Deprecation.warn "ActionController::Base.relative_url_root= is ineffective. " <<
          "Please stop using it.", caller
      end

I haven't had any luck figuring out how to do that using Warbler and Tomcat, though. Any suggestions? For what it's worth, the app works fine when I run it in the root context.

My environment:

  • Warbler 1.3.2
  • Tomcat 7.0.22
  • JRuby 1.6.5
  • Rails 3.0.10
link|improve this question
I've also been able to get the same behavior using trinidad. – Marc Nov 15 '11 at 20:24
Same problem here, with rails 3.1.1. – Miguel Ping Nov 15 '11 at 20:37
As a temporary workaround, I've added options.delete(:relative_url_root) to actionpack-3.0.10/lib/action_controller/railtie.rb right before the line 54, where the error is occurring. – Marc Nov 15 '11 at 20:59
feedback

1 Answer

After a lot of digging, it looks like this particular exception was being caused by a missing parameter in ActionController::DeprecatedBehavior.relative_url_root= in Rails v3.0.10. Miguel, your issue might be related but, if you're seeing it in Rails v3.1.1, then it's slightly different. The file that I had to modify to fix it doesn't exist in v3.1.1.

I filed issue 3645 in the Rails project on Github, fixed it in a fork, and issued a pull request to them. Hopefully this will be fixed in a new release of Rails 3.0.

In the meantime, if you want to use my fixed version, it's available at https://github.com/mhuffnagle/rails/tree/3-0-stable.

link|improve this answer
thanks, I'll give it a try. – Miguel Ping Nov 16 '11 at 20:54
My pull request was accepted into Rails 3-0-stable so, hopefully, it'll be fixed in Rails 3.0.11. – Marc Nov 16 '11 at 21:27
I'll try and use the rails-3-0-stable branch, thanks! – Miguel Ping Nov 18 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.