aspose file tools
The moose likes EJB and other Java EE Technologies and the fly likes Client specific session!! Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "Client specific session!!" Watch "Client specific session!!" New topic
Author

Client specific session!!

Nayanjyoti Talukdar
Ranch Hand

Joined: Feb 12, 2002
Posts: 71
Hi,
Can anyone please tell me how stateful session bean keeps track of session for a particular client ?
Regards
Nayan.
Dave Landers
Ranch Hand

Joined: Jul 24, 2002
Posts: 401
The container assigns an identity to the session bean instance when it is created and that identity is set in the client's remote stub so it comes across with each method call. The container then can look up the right bean instance to use for that call (and activate it if it has been passivated, etc).
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Client specific session!!
 
Similar Threads
Difference between Cookies and Session in servlets
TxnRolledbackException instead of RemoteException
HttpSession and Cookies
Session Management
session ID changes