Update code from https://github.com/dmi-try/marionette-collective
[packages/precise/mcollective.git] / website / reference / plugins / connector_stomp.md
index b3ec9f792ce3b8c2b359f97cc705696ac254471b..98eaa7a9c4fb654f48a4815006c953bcaa391aac 100644 (file)
@@ -4,6 +4,10 @@ title: STOMP Connector
 toc: false
 ---
 [STOMP]: http://stomp.codehaus.org/
+[ConnectorActiveMQ]: /mcollective/reference/plugins/connector_activemq.html
+[ConnectorRabbitMQ]: /mcollective/reference/plugins/connector_rabbitmq.html
+
+*NOTE:* This connector is being deprecated and will not be supported in versions newer than 2.2.x.  Please move to one of the [ConnectorActiveMQ] or [ConnectorRabbitMQ].
 
 The stomp connector uses the [STOMP] rubygem to connect to compatible servers.  This is known to work with ActiveMQ and Stompserver.  Anecdotal evidence suggests it works with RabbitMQ's Stomp plugin.
 
@@ -30,7 +34,7 @@ The most basic configuration method is supported in all versions of the gem:
 connector = stomp
 plugin.stomp.base64 = false
 plugin.stomp.host = stomp.my.net
-plugin.stomp.port = 6163
+plugin.stomp.port = 61613
 plugin.stomp.user = me
 plugin.stomp.password = secret
 {% endhighlight %}
@@ -49,12 +53,12 @@ logging about connections, failures and other significant events.
 connector = stomp
 plugin.stomp.pool.size = 2
 plugin.stomp.pool.host1 = stomp1
-plugin.stomp.pool.port1 = 6163
+plugin.stomp.pool.port1 = 61613
 plugin.stomp.pool.user1 = me
 plugin.stomp.pool.password1 = secret
 
 plugin.stomp.pool.host2 = stomp2
-plugin.stomp.pool.port2 = 6163
+plugin.stomp.pool.port2 = 61613
 plugin.stomp.pool.user2 = me
 plugin.stomp.pool.password2 = secret
 {% endhighlight %}