Are there any restrictions on using RMI from within a Session bean?
I want to post an event to a class running on the same server as the container but in another VM. Any ideas.
Cheers
Toby
-
RMI from inside the container? (2 messages)
- Posted by: Toby Weston
- Posted on: September 19 2001 12:27 EDT
Threaded Messages (2)
- RMI from inside the container? by Gal Binyamini on September 19 2001 18:36 EDT
- RMI from inside the container? by Toby Weston on September 20 2001 03:36 EDT
-
RMI from inside the container?[ Go to top ]
- Posted by: Gal Binyamini
- Posted on: September 19 2001 18:36 EDT
- in response to Toby Weston
The only restriction on RMI is that you can't be an RMI server object. You *can connect* to other RMI objects.
For the event posting, RMI sounds to me like a reasonable solution.
Gal -
RMI from inside the container?[ Go to top ]
- Posted by: Toby Weston
- Posted on: September 20 2001 03:36 EDT
- in response to Gal Binyamini
Thanks, yes I only need to post the event via RMI, any communication from the listener to the bean can go via the beans remote interface.
Thanks again
Toby