例如,由于我们的服务器使用的是 TIBCO EMS,我可以使用 OpenJMS 或 WeblogicJMS 连接到它吗?
问问题
109 次
1 回答
1
JMS standardizes the API, but not the wire-protocol. So all JMS implementations are based on the same API interfaces, but you will require different implementation libraries/jar-files in your class-path that match the server you're connecting to. In the TIBCO EMS case, if you're connecting to a EMS, you'll need tibjms.jar
and possibly other of this jars; you cannot use something from OpenJMS etc. instead since they use different wire-protocols.
JMS is pretty much the same as JDBC in this regard.
于 2013-10-01T16:52:46.710 回答