Originally posted by rajareddy annavaarm:
we are persiting data at server side using HttpSessions.Then why do we need to use stateful session beans.Because stateful session beans are also using to persist data on server side.
if i use persist the data of a specific client using Http Sessions,then what is the use of statefull session beans.
We are not persisting data in server using HTTPSession.Its used my web application to keep track of user session and has a mechanism to store object in it.Its part of
servlet api.
Stateful session bean generally represents process/operation but it can store client specific information untill the client removes it.It an
EJB component and hence part of EJB api.