-- mellowplace <[EMAIL PROTECTED]> wrote (on Wednesday, 03 September 2008, 04:53 AM -0700): > I am trying to store a Zend_Controller_Request_Http instance in the session > so I can redirect a user to authentication and then resume the original > action - however it would seem that the Zend_Controller_Request_Http does > not persist properly my guess is that getParam is an interface to the $_GET > and $_POST vars, and when you store the object it does not serialise these > variables.
Spot on. The request object is an interface/proxy to the environment. It does not overwrite or store it internally. > Personally if true I think this behaviour needs to change but does anyone > know if it is possible to store this object properly? Extend the shipped request object with your own implementation. -- Matthew Weier O'Phinney Software Architect | [EMAIL PROTECTED] Zend Framework | http://framework.zend.com/
