Author |
Message
|
jayaramanit |
Posted: Wed Jul 25, 2007 3:00 am Post subject: JMS and MQ....... |
|
|
Apprentice
Joined: 27 Feb 2007 Posts: 30 Location: India
|
what is difference between JMS and MQ............... |
|
Back to top |
|
 |
Vitor |
Posted: Wed Jul 25, 2007 3:04 am Post subject: Re: JMS and MQ....... |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
jayaramanit wrote: |
what is difference between JMS and MQ............... |
JMS is a messaging standard included as part of the Java language standard.
MQ is a piece of software, one of it's many features is the ability to act as a JMS provider. As well as having a base Java API interface (if that's the proper term). _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
jayaramanit |
Posted: Wed Jul 25, 2007 3:09 am Post subject: |
|
|
Apprentice
Joined: 27 Feb 2007 Posts: 30 Location: India
|
thanks vitor.........can you be liitle bit ellaborate....... |
|
Back to top |
|
 |
fjb_saper |
Posted: Wed Jul 25, 2007 3:23 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
jayaramanit wrote: |
thanks vitor.........can you be liitle bit ellaborate....... |
Basically you have 2 interfaces to code to in Java, and they don't mix.
- The java Base interface as described in the Using Java manual
- The JMS interface. It's MQ implementation is also described in the Using Java manual.
Both have different capabilities and characteristics. You need to choose the one that suits you best, or that is best geared towards your environment...  _________________ MQ & Broker admin |
|
Back to top |
|
 |
jsware |
Posted: Tue Jul 31, 2007 8:50 am Post subject: Re: JMS and MQ....... |
|
|
 Chevalier
Joined: 17 May 2001 Posts: 455
|
jayaramanit wrote: |
what is difference between JMS and MQ............... |
JMS is to MQ as JDBC is to DB2 or JDBC is to Oracle.
JDBC is an API that allows you to perform SQL operations against a database (Oracle/DB2).
JMS is an API that allows you to perform messaging operations against Message-Oriented Middleware (WebSphere MQ, SonicMQ, ActiveMQ). _________________ Regards
John
The pain of low quaility far outlasts the joy of low price. |
|
Back to top |
|
 |
|