I've started to create a very basic rails app. It basically outputs
the body of an incoming HTTP PUT request to the console.
Unfortunately, it only handles HTTP requests and completely ignores
HTTPS requests.

Do I have anything special to my Rails 3 routes.rb. It currently looks
like this:

PutTest::Application.routes.draw do

  controller :put_test do
    match 'put', :to => :update, :via => [:put]
  end
end

I don't see the controller handling incoming HTTPS PUT requests.
Everything works fine with HTTP PUT requests.

Your help is greatly appreciated!

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to