Through much trial and error, I have narrowed the problem down to line 5 below. For some reason, the .js response is ending the user session. Using 3.0.4 and devise 1.1.7
Many thanks to Brandon Martin from the Devise Google Group for pointing me int he right direction...
This is a result of a Rails 3.0.4 security fix.
http://weblog.rubyonrails.org/2011/2/8/csrf-protection-bypass-in-ruby-on-rails
After an hour or so of working forward from this blog post, here are some tips for others...
rake rails:update
(I think, but I use a customized rails.js file)csrf_meta_tag
helper above your javascript_include_tag
sHope that helps!