DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18022>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18022

HttpSessionBindingListener.valueUnbound() called on every request to an ActionForm





------- Additional Comments From [EMAIL PROTECTED]  2003-07-29 20:42 -------

I propose that createActionForm returns a value of type
ActionFormResult (below), that encapsulates a flag 
indicating whether or not the form bean was recycled.
The caller can then check the flag.

BTW, there's a couple of places where createActionForm 
is called (i.e. FormTag).  

I can work on this.  




    public static class ActionFormResult {

        private ActionForm instance = null;

        private boolean recycled = false;

        public ActionFormResult(ActionForm instance, boolean recycled) {
            this.instance = instance;
            this.recycled = recycled;
        }

        public ActionForm getInstance() { return this.instance; }

        public boolean getRecycled() { return this.recycled; }
    }

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to