Re: java.io.NotSerializableException: java.util.HashMap

2001-08-29 Thread martin . cooper
I don't know what the relationship is between this error and your JSP, but it looks like your container is trying to serialize the session for some reason. Apparently you have a session attribute which is a HashMap, and it doesn't like that because it can't serialize it. -- Martin Cooper -

Re: java.io.NotSerializableException: java.util.HashMap

2001-08-29 Thread Matt Raible
I figured it out - I was stuffing hashmaps and rowsets into my ActionForms, and then storing those in the session. Because of the clustering configuration we have in iPlanet, this error was being thrown for the reasons you state. I fixed this my moving any non-serializable components into beans

RE: java.io.NotSerializableException: java.util.HashMap

2001-08-29 Thread George, Carl
Are the values in your arraylist Serializable? -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 28, 2001 2:31 PM To: [EMAIL PROTECTED] Subject: java.io.NotSerializableException: java.util.HashMap I am getting the following error on a JSP page that I

RE: java.io.NotSerializableException: java.util.HashMap

2001-08-29 Thread Barry Glasco
Don't you have work to do:) -Original Message- From: George, Carl [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 29, 2001 1:47 PM To: '[EMAIL PROTECTED]' Subject: RE: java.io.NotSerializableException: java.util.HashMap Are the values in your arraylist Serializable? -Original