Add JMS page
Project: http://git-wip-us.apache.org/repos/asf/karaf/repo Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/5efa1a5f Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/5efa1a5f Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/5efa1a5f Branch: refs/heads/master Commit: 5efa1a5f574f909735e0aa7576fabb837416daf6 Parents: 3d00570 Author: Jean-Baptiste Onofré <[email protected]> Authored: Wed Dec 18 09:13:19 2013 +0100 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Wed Dec 18 09:13:19 2013 +0100 ---------------------------------------------------------------------- manual/src/main/webapp/users-guide/jms.conf | 27 ++++++++++++++++++++++++ 1 file changed, 27 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/karaf/blob/5efa1a5f/manual/src/main/webapp/users-guide/jms.conf ---------------------------------------------------------------------- diff --git a/manual/src/main/webapp/users-guide/jms.conf b/manual/src/main/webapp/users-guide/jms.conf new file mode 100644 index 0000000..f06db63 --- /dev/null +++ b/manual/src/main/webapp/users-guide/jms.conf @@ -0,0 +1,27 @@ +h1. MOM (JMS) + +The Apache Karaf MOM (Messaging Oriented Middleware/JMS) is an optional enterprise feature. + +You have to install the {{jms}} feature first: + +{code} +karaf@root()> feature:install jms +{code} + +The {{jms}} feature doesn't install a JMS broker: it just installs the OSGi service, commands, and MBean to interact with +a JMS broker (not the broker itself). + +It means that you have to install a JMS broker itself. + +This JMS broker can be available: + +* outside of Apache Karaf, as a standalone broker. In that case, Apache Karaf JMS will remotely connect to the JMS broker. +* embedded in Apache Karaf. + +For instance, you can install Apache ActiveMQ directly in Apache Karaf: + +{code} +karaf@root()> feature:repo-add activemq +Adding feature url mvn:org.apache.activemq/activemq-karaf/LATEST/xml/features +karaf@root()> feature:install activemq-broker +{code} \ No newline at end of file
