I was using Netdynamics and was used to the feature called Global session objects. These are objects that can be accessed by any client. The server may be running in multiple JVM (even in different machines).
I know using Servlets i can create global objects. But this is possible only with one JVM application, right?
Can this be done using an EJB?
-
Global session objects in J2EE (2 messages)
- Posted by: Saravanan Thandapani
- Posted on: June 28 2000 07:20 EDT
Threaded Messages (2)
- Use JNDI to share objects by Michael Camilo on June 28 2000 13:08 EDT
- Global session objects in J2EE by Ken Norcross on February 10 2001 19:15 EST
-
Use JNDI to share objects[ Go to top ]
- Posted by: Michael Camilo
- Posted on: June 28 2000 13:08 EDT
- in response to Saravanan Thandapani
Perhaps you can use your naming service to share these global objects.
Check out http://www.javaworld.com/javaworld/jw-03-2000/jw-03-howto.html.
http://www.javaworld.com/javaworld/jw-07-1999/jw-07-cooltools.html. -
Global session objects in J2EE[ Go to top ]
- Posted by: Ken Norcross
- Posted on: February 10 2001 19:15 EST
- in response to Saravanan Thandapani
Entity beans are also by definition global shared persistent objects.