• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

[MDB] K&B, What technique is better ?

 
Bartender
Posts: 3958
43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, K&B !
Since MDB does not have local/remote interfaces, what is better
technique:
1) To call MDB directly from client (for example, Java Servlet, possibly on separate server).
2) To call MDB from Enterprise Bean.
Java message is delivered over JMS provider, it looks like there is not
any difference, but maybe there are some other issues/tricks which should be considered. What is best best practice ?
[ October 31, 2003: Message edited by: Mikalai Zaikin ]
 
Ranch Hand
Posts: 8946
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You cannot call a MDB directly beacuse it does not have a home/component interfaces. You can send a message to a JMS server so that a MDB can be invoked by the container.
Hope this helps,
 
Mikalai Zaikin
Bartender
Posts: 3958
43
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, when I say "call MDB" that ofcourse means "send message to MDB over JMS"
My question actually was : *is there any difference for client location*?
 
Pradeep bhatt
Ranch Hand
Posts: 8946
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It does not make any difference whether you sent messages from a servlet or EJB.
You can replace the sender any time, that is the advantage of using messaging system.
 
Ranch Hand
Posts: 360
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Client and MDB are highly decoupled.Thanks to JMS
 
reply
    Bookmark Topic Watch Topic
  • New Topic