File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes EJB and other Java EE Technologies and the fly likes Casting Problem in Stateful Session Beans(urgent please) Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "Casting Problem in Stateful Session Beans(urgent please)" Watch "Casting Problem in Stateful Session Beans(urgent please)" New topic
Author

Casting Problem in Stateful Session Beans(urgent please)

apurva mehta
Ranch Hand

Joined: Nov 21, 2001
Posts: 35
I am doing a project in which I use a stateful bean in which i have a method which stores a remote reference of a stateless bean in a vector & then i used to iterate it by using java.util.Iterator class. But when i run my application i get an error that
Could not cast iterator of class pdim.SearchProdsSLBean to java.io.Serializable.
where pdim.SearchProdsSLBean is my stateful bean.

Earlier i used this same method in stateless bean & it worked very fine.But since now we use stateful beans I think that their is some problem with storing the state of Iterator.
should i insert any code in ejbPassivate() & ejb Activate()method ??
(I tried by removing iterator object in ejbPassivate() but it didnt help).
Please any one can help me regarding this.
thanx in advance.
regards
Apurva
 
I agree. Here's the link: http://jrebel.com/download
 
subject: Casting Problem in Stateful Session Beans(urgent please)
 
Similar Threads
Doubts in Mock exam questions.
Invoking Timer methods from stateful/stateless session bean
When will call ejbActivate and ejbPasivate ?
Problem in understanding session beans
Help in stateless and stateful beans ( VAJ )