Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

By the way, I'm using rails 3.

How can I use devise's "warden" to authenticate a rack app in the same stack as the rails app that uses devise ?

My problem is that when I call this:

request.env['warden'] # nil :(

from the other application on the rack stack I get nil !

I integrated dav4rack (webdav) in my rails app via config.ru. I use devise for authentication in my rails app.

When I try to access the "warden" from my custom dav4rack Resource, request.env['warden'] I get nil. How can I use warden to authenticate in my dav4rack resource?

Example of config.ru I use:

http://pastie.org/1240732

share|improve this question

1 Answer

up vote 0 down vote accepted

In your config.ru, Your stack doesn't use warden.

If you check a request to your '/' path, you use immediatly your Rack Application in your config.ru. The warden middlkeware is add on Rails application. So like your rack application call any other rack middleware you can't to have the warden information

You need define your Rack application after the middleware warden. Because without Warden Middleware, there are no warden capability available.

share|improve this answer
1. Can you please rephrase the first phrase so it has some meaning and understandable grammar? 2. Doesn't devise, from my rails app, put warden automatically in the rack stack? – clyfe Oct 23 '10 at 14:25
I try to rephrase it – shingara Oct 24 '10 at 15:17
I solved this: stackoverflow.com/questions/4009082/… – clyfe Oct 24 '10 at 16:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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