Hello, We are running Weblogic 7.0 in a clustered environment and keep getting session replicate errors during file upload. We are using Struts Commons file upload package and the logs indicate some objects might not be serialized. Has anyone run into this issue? Looking into the struts source, an object FormFile within struts does not implement serializable. Is this the reason we are running into issues? Is there a work around for this problem? Thanks and regards, Sumanth [ December 18, 2003: Message edited by: starigopula ]
Rick Hightower
Author
Ranch Hand
Joined: Feb 20, 2002
Posts: 350
posted
0
Change the Action mapping to use the ActionForm from Request scope. Then it would never try to replicate the form. (Session scope gets shared not Request scope.)