re: Removing nested bean collections in session scope.......

2003-04-04 Thread Ted Husted
It sounds like the ActionForm is in session scope (the default) and that there is a reference to the other collections on the ActionForm. You may also need to dispose the ActionForm after resetting the collection, something like request.getSession().set(myActionForm,null); -Ted. -- Ted

RE: Removing nested bean collections in session scope.......

2003-04-03 Thread apachep2
I have had this issue before. In your next action, remove mapping to the ActionForm in your struts-config.xml. -Original Message- From: Al Willingham [mailto:[EMAIL PROTECTED] Sent: April 3, 2003 12:47 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Removing nested bean

RE: Removing nested bean collections in session scope.......

2003-04-03 Thread Al Willingham
If I remove the mapping to my actionForm, I get an error indicating that my jsp cannot retrieve definition for form bean null. Do I need to usebean scope = session?? My mappings are: First Mapping.. action path=/Operator/network parameter=TEST