calling message driven bean in session bean

Hi,Can I call message driven bean from session bean? I didn't find any example on calling message driven bean from session bean.I will appriciate if you give any ideas on this.Thanks.
[212 byte] By [madhukar@yahoo.coma] at [2007-10-1 2:32:06]
# 1
Hi, The MDB's onMessage() method is invoked upon a message availability so to 揷all?a MDB you only need to send a message to the destination it is listening to. Hope this helps.Arnaud
ArnaudArjunaa at 2007-7-8 11:39:52 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2

Can I call message driven bean from session bean?

-> MDB are listeners which automatically executes (onMessage() method) when message is placed in Queue/Tpoic.

-> There is no home/remote interface to access MDB.

->So, calling MDB from session bean is not possible.

Regards,

Anand

nm_bobadea at 2007-7-8 11:39:52 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3
Check chapter 34 in Sun's free J2EE tutorial. There is an example there.Regards,Ken
krubina at 2007-7-8 11:39:52 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...