• 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
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

JMS without reference to EJB

 
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the best thing to come out of JMS without refeence to EJB or JDO's or POJOs.
I suspect Message driven beans ?
Anything else ?
Thanks in advance.
regards
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
To come out of JMS? Whaddaya mean, pardner?
 
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by HS Thomas:
What is the best thing to come out of JMS without refeence to EJB or JDO's or POJOs.
I suspect Message driven beans ?
Anything else ?


If your are talking about the messages the are sent/received to/from message queue using JMS API, then the basic requirement is all those messages should implement javax.jms.Message interface.
or if you are talking about the message listeners, that recieve the message. Then the client (listener) should implement MessageListener ... it could be a EJB (i mean MDB) or just a normal java class.
Did I answer your question ?
 
Vinod John
Ranch Hand
Posts: 162
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry multiple submission ...
[ October 29, 2003: Message edited by: Vinod John ]
 
HS Thomas
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Lasse : Whaddaya mean, pardner?


Well speaking to my old boss (who is actually very young and is now back on the mothership) , he is now working with JMS with no EJBs. Are MDBs the only thing of importance in JMX? I assume the package is written in such a way that it is decouplable ? I can look at the JMS package and see how MQ-Series interfaces with it I suppose.
Vinod John : Yes that helps enormously.

regards
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by HS Thomas:
Are MDBs the only thing of importance in JMX?


Sorry about still not giving any answers, but... I suspect "JMX" was a typo and meant to say "JMS", right? Furthermore, importance from what/whose perspective?
 
HS Thomas
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ummm. That's right.
Message driven beans seem to be the Hub of JMS.
Perhaps I can use MDBs with Lotus Notes / MQ-Series and don't need to take anything else from JMS ?

regards
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can definitely have your MDBs wired to an MQSeries (WebSphere MQ). For Lotus Notes, I have no idea.
 
HS Thomas
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks ! I am sure you can use it with Lotus Notes also. I just can't find anything. It's probably not a Big Issue with some clever decoupling.
regards
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sure anything can be done. I just have a hunch that it requires a lot of "dirty work" to get a group collaboration software (Notes) to talk to message-oriented middleware such as MQ Series.
 
HS Thomas
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Would Aspects help in that case?
regards
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Aspects? I doubt it because the problem is not of structure but protocol.
I really don't know what kind of programming libraries IBM provides for Notes, but I'd guess that if such a library is available, it's bound to be C/C++, not Java.
 
author
Posts: 3892
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Actually no, we provide Java programming API's for Notes, and full integration with Notes for WebSphere. Do a google or Amazon search for "Domino programming with Java" and you'll find a bunch of hits.
Kyle
 
HS Thomas
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Kyle.
That's a good start.
regards
 
HS Thomas
Ranch Hand
Posts: 3404
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Aspects? I doubt it because the problem is not of structure but protocol.


Thanks Lasse. . I'll remember to consider protocol first.
 
No more fooling around. Read this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic