Hi,
>No I am using the default out-of-the-box manager. It worried me that I
>didn't see Session.ser (or whatever) anywhere which is what made me
>think I somehow
>farkled the permissions.
I mispelled the file name, it's sessions.ser as others have pointed out.
(Don't delete .cer files if you have them, as they might be security
certificates, that's what I had in mind when writing my message, too
much multitasking on my part ;))
>public final class UploadAction extends Action {
> private Log log = LogFactory.getLog(this.getClass());
Make it static. Someone else pointed out how the above will lead to
your error: Log (the commons-logging interface) may have
non-serializable implementations, making UploadAction itself not
serializable, and therefore not suitable as a session attribute.
Tomcat 5 is more restrictive about enforcing serializable session
attributes than tomcat 4 was.
When you make it static you can't use the this.getClass() construct
unfortunately. You can use private static Log log =
LogFactory.getLog(UploadAction.class).
Yoav Shapira
This e-mail, including any attachments, is a confidential business communication, and
may contain information that is confidential, proprietary and/or privileged. This
e-mail is intended only for the individual(s) to whom it is addressed, and may not be
saved, copied, printed, disclosed or used by anyone else. If you are not the(an)
intended recipient, please immediately delete this e-mail from your computer system
and notify the sender. Thank you.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]