> From: athal berth [mailto:athal.be...@gmail.com] > Subject: Unable to serialize delta request for sessionid [Tomcat 6.0.16 > and jdk1.6.0_04] > > java.io.NotSerializableException: > mx.org.FIA.sij.util.ligas.LigasGraficas > I dont know if the problem is my configuration or the application,
It's the application. You've put an object of type mx.org.FIA.sij.util.ligas.LigasGraficas into the session; however, that type is not serializable, so it cannot be transmitted to the other nodes. You need to do whatever it takes to make that class serializable, or avoid adding it to the session. Sometimes all you need is to add "implements Serializable" to the class definition. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org