[Catalyst] error using session and authn plug-ins under apache

Brandon Black blblack at gmail.com
Fri Jul 28 21:34:22 CEST 2006


On 7/28/06, leonard.a.jaffe at jpmchase.com <leonard.a.jaffe at jpmchase.com> wrote:
> #######################################
> #my Authentication and session plugins
> #######################################
> Authentication
> Authentication::Store::DBIC
> Authentication::Credential::SiteMinder
> Session
> Session::State::Cookie
> Session::Store::DBIC

Just a shot in the dark here, but Cat plugins are
load-order-sensitive, and typically I think Session is loaded before
Auth.  You could try reversing those blocks as:

Session
Session::State::Cookie
Session::Store::DBIC
Authentication
Authentication::Store::DBIC
Authentication::Credential::SiteMinder

-- Brandon



More information about the Catalyst mailing list