I have a session bean and some other entity beans. the entity beans have only local interface because only the session bean will use them. but when I invoke the session bean from the web layer, the weblogic tell me java.io.NotSerializableException error. Is that mean I cannot set the entity beans to local? any help is appliciate!
Remote Session Bean to colocated Local Entity Bean is fine. Are the parameters passed to your Session Bean and the value returned Serializable? If not, then you have a problem. [ September 26, 2002: Message edited by: Chris Mathews ]
u mean only the value transfered between the web layer and the session should be seriable. but how about the values between the session bean and the entity bean? in face, the weblogic told me that the implementation of the entity bean's local home interface has NotSerializableException. I've check my code times, but found no error. could somebody help me??