Re: How do i write listener class
Posted By:
rajeev_kumar
Posted On:
Thursday, October 3, 2002 06:23 AM
You have write Message Driven Bean for this, find the details on java.sun.com
Design would be as follows, as soon as the message is posted on Topic/Queue, as Message Driven Bean is registered with Topic/Queue, it will trigger off the Message Driven Bean onMessage() method, in which u can do all the business processing logic or something else u want to do,
Hope this Helps
Re: How do i write listener class
Posted By:
rajeev_kumar
Posted On:
Thursday, October 3, 2002 06:23 AM
You have write Message Driven Bean for this, find the details on java.sun.com
Design would be as follows, as soon as the message is posted on Topic/Queue, as Message Driven Bean is registered with Topic/Queue, it will trigger off the Message Driven Bean onMessage() method, in which u can do all the business processing logic or something else u want to do,
Hope this Helps