Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 20DA0106AB for ; Thu, 10 Oct 2013 14:40:40 +0000 (UTC) Received: (qmail 95877 invoked by uid 500); 10 Oct 2013 14:40:29 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 95455 invoked by uid 500); 10 Oct 2013 14:40:25 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 95386 invoked by uid 99); 10 Oct 2013 14:40:25 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Oct 2013 14:40:25 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D10319141FB; Thu, 10 Oct 2013 14:40:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chirino@apache.org To: commits@activemq.apache.org Date: Thu, 10 Oct 2013 14:40:25 -0000 Message-Id: <0045f358f3dc4104b7ffa3ce9358d19b@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [02/18] Porting apollo examples structure to ActiveMQ 5.9. http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/release/examples/stomp/websocket/js/stomp.js ---------------------------------------------------------------------- diff --git a/assembly/src/release/examples/stomp/websocket/js/stomp.js b/assembly/src/release/examples/stomp/websocket/js/stomp.js new file mode 100644 index 0000000..3e237f1 --- /dev/null +++ b/assembly/src/release/examples/stomp/websocket/js/stomp.js @@ -0,0 +1,379 @@ +// Generated by CoffeeScript 1.3.3 +(function() { + var Byte, Client, Frame, Stomp, + __hasProp = {}.hasOwnProperty; + + var MAX_FRAME_SIZE=16*1024;; + + Byte = { + LF: '\x0A', + NULL: '\x00' + }; + + Frame = (function() { + + function Frame(command, headers, body) { + this.command = command; + this.headers = headers != null ? headers : {}; + this.body = body != null ? body : ''; + } + + Frame.prototype.toString = function() { + var lines, name, value, _ref; + lines = [this.command]; + _ref = this.headers; + for (name in _ref) { + if (!__hasProp.call(_ref, name)) continue; + value = _ref[name]; + lines.push("" + name + ":" + value); + } + if (this.body) { + lines.push("content-length:" + ('' + this.body).length); + } + lines.push(Byte.LF + this.body); + return lines.join(Byte.LF); + }; + + Frame._unmarshallSingle = function(data) { + var body, chr, command, divider, headerLines, headers, i, idx, len, line, start, trim, _i, _j, _ref, _ref1; + divider = data.search(RegExp("" + Byte.LF + Byte.LF)); + headerLines = data.substring(0, divider).split(Byte.LF); + command = headerLines.shift(); + headers = {}; + trim = function(str) { + return str.replace(/^\s+|\s+$/g, ''); + }; + line = idx = null; + for (i = _i = 0, _ref = headerLines.length; 0 <= _ref ? _i < _ref : _i > _ref; i = 0 <= _ref ? ++_i : --_i) { + line = headerLines[i]; + idx = line.indexOf(':'); + headers[trim(line.substring(0, idx))] = trim(line.substring(idx + 1)); + } + body = ''; + start = divider + 2; + if (headers['content-length']) { + len = parseInt(headers['content-length']); + body = ('' + data).substring(start, start + len); + } else { + chr = null; + for (i = _j = start, _ref1 = data.length; start <= _ref1 ? _j < _ref1 : _j > _ref1; i = start <= _ref1 ? ++_j : --_j) { + chr = data.charAt(i); + if (chr === Byte.NULL) { + break; + } + body += chr; + } + } + return new Frame(command, headers, body); + }; + + Frame.unmarshall = function(datas) { + var data; + return (function() { + var _i, _len, _ref, _results; + _ref = datas.split(RegExp("" + Byte.NULL + Byte.LF + "*")); + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + data = _ref[_i]; + if ((data != null ? data.length : void 0) > 0) { + _results.push(Frame._unmarshallSingle(data)); + } + } + return _results; + })(); + }; + + Frame.marshall = function(command, headers, body) { + var frame; + frame = new Frame(command, headers, body); + return frame.toString() + Byte.NULL; + }; + + return Frame; + + })(); + + Client = (function() { + + function Client(ws) { + this.ws = ws; + this.ws.binaryType = "arraybuffer"; + this.counter = 0; + this.connected = false; + this.heartbeat = { + outgoing: 10000, + incoming: 10000 + }; + this.subscriptions = {}; + } + + Client.prototype._transmit = function(command, headers, body) { + var out; + out = Frame.marshall(command, headers, body); + if (typeof this.debug === "function") { + this.debug(">>> " + out); + } + while( true) { + if( out.length > MAX_FRAME_SIZE ) { + this.ws.send(out.substring(0, MAX_FRAME_SIZE)); + out = out.substring(MAX_FRAME_SIZE); + } else { + return this.ws.send(out); + } + } + }; + + Client.prototype._setupHeartbeat = function(headers) { + var serverIncoming, serverOutgoing, ttl, v, _ref, _ref1, + _this = this; + if ((_ref = headers.version) !== Stomp.VERSIONS.V1_1 && _ref !== Stomp.VERSIONS.V1_2) { + return; + } + _ref1 = (function() { + var _i, _len, _ref1, _results; + _ref1 = headers['heart-beat'].split(","); + _results = []; + for (_i = 0, _len = _ref1.length; _i < _len; _i++) { + v = _ref1[_i]; + _results.push(parseInt(v)); + } + return _results; + })(), serverOutgoing = _ref1[0], serverIncoming = _ref1[1]; + if (!(this.heartbeat.outgoing === 0 || serverIncoming === 0)) { + ttl = Math.max(this.heartbeat.outgoing, serverIncoming); + if (typeof this.debug === "function") { + this.debug("send PING every " + ttl + "ms"); + } + this.pinger = typeof window !== "undefined" && window !== null ? window.setInterval(function() { + _this.ws.send(Byte.LF); + return typeof _this.debug === "function" ? _this.debug(">>> PING") : void 0; + }, ttl) : void 0; + } + if (!(this.heartbeat.incoming === 0 || serverOutgoing === 0)) { + ttl = Math.max(this.heartbeat.incoming, serverOutgoing); + if (typeof this.debug === "function") { + this.debug("check PONG every " + ttl + "ms"); + } + return this.ponger = typeof window !== "undefined" && window !== null ? window.setInterval(function() { + var delta; + delta = Date.now() - _this.serverActivity; + if (delta > ttl * 2) { + if (typeof _this.debug === "function") { + _this.debug("did not receive server activity for the last " + delta + "ms"); + } + return _this._cleanUp(); + } + }, ttl) : void 0; + } + }; + + Client.prototype.connect = function(login, passcode, connectCallback, errorCallback, vhost) { + var _this = this; + this.connectCallback = connectCallback; + if (typeof this.debug === "function") { + this.debug("Opening Web Socket..."); + } + this.ws.onmessage = function(evt) { + var arr, c, data, frame, onreceive, _i, _len, _ref, _results; + data = typeof ArrayBuffer !== 'undefined' && evt.data instanceof ArrayBuffer ? (arr = new Uint8Array(evt.data), typeof _this.debug === "function" ? _this.debug("--- got data length: " + arr.length) : void 0, ((function() { + var _i, _len, _results; + _results = []; + for (_i = 0, _len = arr.length; _i < _len; _i++) { + c = arr[_i]; + _results.push(String.fromCharCode(c)); + } + return _results; + })()).join('')) : evt.data; + _this.serverActivity = Date.now(); + if (data === Byte.LF) { + if (typeof _this.debug === "function") { + _this.debug("<<< PONG"); + } + return; + } + if (typeof _this.debug === "function") { + _this.debug("<<< " + data); + } + _ref = Frame.unmarshall(data); + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + frame = _ref[_i]; + switch (frame.command) { + case "CONNECTED": + if (typeof _this.debug === "function") { + _this.debug("connected to server " + frame.headers.server); + } + _this.connected = true; + _this._setupHeartbeat(frame.headers); + _results.push(typeof _this.connectCallback === "function" ? _this.connectCallback(frame) : void 0); + break; + case "MESSAGE": + onreceive = _this.subscriptions[frame.headers.subscription]; + _results.push(typeof onreceive === "function" ? onreceive(frame) : void 0); + break; + case "RECEIPT": + _results.push(typeof _this.onreceipt === "function" ? _this.onreceipt(frame) : void 0); + break; + case "ERROR": + _results.push(typeof errorCallback === "function" ? errorCallback(frame) : void 0); + break; + default: + _results.push(typeof _this.debug === "function" ? _this.debug("Unhandled frame: " + frame) : void 0); + } + } + return _results; + }; + this.ws.onclose = function() { + var msg; + msg = "Whoops! Lost connection to " + _this.ws.url; + if (typeof _this.debug === "function") { + _this.debug(msg); + } + return typeof errorCallback === "function" ? errorCallback(msg) : void 0; + }; + return this.ws.onopen = function() { + var headers; + if (typeof _this.debug === "function") { + _this.debug('Web Socket Opened...'); + } + headers = { + "accept-version": Stomp.VERSIONS.supportedVersions(), + "heart-beat": [_this.heartbeat.outgoing, _this.heartbeat.incoming].join(',') + }; + if (vhost) { + headers.host = vhost; + } + if (login) { + headers.login = login; + } + if (passcode) { + headers.passcode = passcode; + } + return _this._transmit("CONNECT", headers); + }; + }; + + Client.prototype.disconnect = function(disconnectCallback) { + this._transmit("DISCONNECT"); + this.ws.onclose = null; + this._cleanUp(); + return typeof disconnectCallback === "function" ? disconnectCallback() : void 0; + }; + + Client.prototype._cleanUp = function() { + this.ws.close(); + this.connected = false; + if (this.pinger) { + if (typeof window !== "undefined" && window !== null) { + window.clearInterval(this.pinger); + } + } + if (this.ponger) { + return typeof window !== "undefined" && window !== null ? window.clearInterval(this.ponger) : void 0; + } + }; + + Client.prototype.send = function(destination, headers, body) { + if (headers == null) { + headers = {}; + } + if (body == null) { + body = ''; + } + headers.destination = destination; + return this._transmit("SEND", headers, body); + }; + + Client.prototype.subscribe = function(destination, callback, headers) { + if (headers == null) { + headers = {}; + } + if (!headers.id) { + headers.id = "sub-" + this.counter++; + } + headers.destination = destination; + this.subscriptions[headers.id] = callback; + this._transmit("SUBSCRIBE", headers); + return headers.id; + }; + + Client.prototype.unsubscribe = function(id) { + delete this.subscriptions[id]; + return this._transmit("UNSUBSCRIBE", { + id: id + }); + }; + + Client.prototype.begin = function(transaction) { + return this._transmit("BEGIN", { + transaction: transaction + }); + }; + + Client.prototype.commit = function(transaction) { + return this._transmit("COMMIT", { + transaction: transaction + }); + }; + + Client.prototype.abort = function(transaction) { + return this._transmit("ABORT", { + transaction: transaction + }); + }; + + Client.prototype.ack = function(messageID, subscription, headers) { + if (headers == null) { + headers = {}; + } + headers["message-id"] = messageID; + headers.subscription = subscription; + return this._transmit("ACK", headers); + }; + + Client.prototype.nack = function(messageID, subscription, headers) { + if (headers == null) { + headers = {}; + } + headers["message-id"] = messageID; + headers.subscription = subscription; + return this._transmit("NACK", headers); + }; + + return Client; + + })(); + + Stomp = { + libVersion: "2.0.0-next", + VERSIONS: { + V1_0: '1.0', + V1_1: '1.1', + V1_2: '1.2', + supportedVersions: function() { + return '1.1,1.0'; + } + }, + client: function(url, protocols) { + var klass, ws; + if (protocols == null) { + protocols = ['v10.stomp', 'v11.stomp']; + } + klass = Stomp.WebSocketClass || WebSocket; + ws = new klass(url, protocols); + return new Client(ws); + }, + over: function(ws) { + return new Client(ws); + }, + Frame: Frame + }; + + if (typeof window !== "undefined" && window !== null) { + window.Stomp = Stomp; + } else { + exports.Stomp = Stomp; + Stomp.WebSocketClass = require('./test/server.mock.js').StompServerMock; + } + +}).call(this); http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/release/examples/stomp/websocket/readme.md ---------------------------------------------------------------------- diff --git a/assembly/src/release/examples/stomp/websocket/readme.md b/assembly/src/release/examples/stomp/websocket/readme.md new file mode 100644 index 0000000..daf516a --- /dev/null +++ b/assembly/src/release/examples/stomp/websocket/readme.md @@ -0,0 +1,18 @@ +## Overview + +This is an example of how use the +['stomp-websocket'](https://github.com/jmesnil/stomp-websocket) +JavaScript APIs with the ActiveMQ message broker. + +## Prereqs + +- Use a modern browser with WebSocket support like Chrome or WebKit + +## Running + +Run the ActiveMQ sever locally and then open the `index.html` +in the current directory using a web browser. + +## Credits + +This example is a modified version of Jeff Mesnil's chat example. \ No newline at end of file http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/release/user-guide.html ---------------------------------------------------------------------- diff --git a/assembly/src/release/user-guide.html b/assembly/src/release/user-guide.html deleted file mode 100755 index b8d31c2..0000000 --- a/assembly/src/release/user-guide.html +++ /dev/null @@ -1,189 +0,0 @@ - - - - - Getting Started - - - -

Getting Started
-

- -

-Welcome to Apache ActiveMQ. This document gives you a quick overview of how to get started trying out Apache ActiveMQ. -

- -

Running the broker

- -

-From the binary distribution you can run the Apache ActiveMQ server via the bin/activemq command. -If you're using Windows, just type -

-
-    cd bin
-    activemq.bat
-
-

-On Unix-like systems, type -

-
-    ./bin/activemq console
-
-

to start the broker in foreground.

-

-The Apache ActiveMQ broker should now have started -

-

-Tip: If you run the bin/activemq command without any arguments it will output usage. -

- -To stop the broker you can press ctrl + c to stop the process. - -

Running the broker in the background

- -

-The broker can be started as a background process via the bin/activemq command -on Unix-like systems, type -

-
-    ./bin/activemq start
-
-

to start the broker in background. The broker will write to its log in the data/activemq.log file.

- -

Stopping the broker

- -

-The broker can be stopped via the bin/activemq command -If you're using Windows, just type -

-
-    cd bin
-    activemq.bat stop
-
-

-On Unix-like systems, type -

-
-    ./bin/activemq stop
-
-

to stop the broker. - - -

Access the web console

- -In a web browser you can access the url http://0.0.0.0:8161/admin to access the ActiveMQ web console. -
-The broker may ask for credentials to login the web console the first time. -The default username and password is admin/admin. You can configure this in the conf/jetty-real.properties file. - -

Access the web demos

- -You would need to start the broker with the demos included, which you do as follows: -If you're using Windows, just type -

-
-    cd bin
-    activemq.bat console xbean:conf/activemq-demo.xml
-
-

-On Unix-like systems, type -

-
-    ./bin/activemq console xbean:conf/activemq-demo.xml
-
- -In a web browser you can access the url http://0.0.0.0:8161/demo to access the ActiveMQ web demos. -
-The broker may ask for credentials to login the web console the first time. -The default username and password is admin/admin. You can configure this in the conf/jetty-real.properties file. - - -

Running the example programs

- -

-To run the demo producer/consumer tools, you need Java and Ant installed. -

- -

Installing Ant

- - -

-The example programs depend on Ant being installed. There are more detailed -instructions on the Ant website - but essentially you need to follow these steps. -

-
    -
  • -JAVA_HOME must point to your JDK installation, such that $JAVA_HOME/bin contains the java executable and $JAVA_HOME/lib contains some jar files. -
  • -
  • -ANT_HOME must point to where you installed Apache Ant (http://ant.apache.org) -
  • -
  • -then you need to add $JAVA_HOME/bin and $ANT_HOME/bin to your PATH variable. -
  • -
- -

-To test this is all working, try typing -

- -
-    java -version
-    cd example
-    ant -version
-
- -

Running the example producer and consumer

- -

-Once you've got Java and Ant installed correctly you should be able to run -

- -
-    cd example
-    ant consumer
-
- -

-and in another shell -

- -
-    cd example
-    ant producer
-
- -

-you can specify exact URLs to connect to via command like arguments. e.g. -

- -
-    ant producer -Durl=tcp://somehost:port
-
- - - -

Further Readings

- -You can find more details about Apache ActiveMQ at its website http://activemq.apache.org, -as well the guide getting started guide. - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-demo.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-demo.xml b/assembly/src/sample-conf/activemq-demo.xml deleted file mode 100644 index 05a5380..0000000 --- a/assembly/src/sample-conf/activemq-demo.xml +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - file:${activemq.conf}/credentials.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-dynamic-network-broker1.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-dynamic-network-broker1.xml b/assembly/src/sample-conf/activemq-dynamic-network-broker1.xml deleted file mode 100644 index 6666df7..0000000 --- a/assembly/src/sample-conf/activemq-dynamic-network-broker1.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-dynamic-network-broker2.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-dynamic-network-broker2.xml b/assembly/src/sample-conf/activemq-dynamic-network-broker2.xml deleted file mode 100644 index 3f8c951..0000000 --- a/assembly/src/sample-conf/activemq-dynamic-network-broker2.xml +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-jdbc-performance.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-jdbc-performance.xml b/assembly/src/sample-conf/activemq-jdbc-performance.xml deleted file mode 100644 index da87933..0000000 --- a/assembly/src/sample-conf/activemq-jdbc-performance.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - file:${activemq.conf}/credentials.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-jdbc.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-jdbc.xml b/assembly/src/sample-conf/activemq-jdbc.xml deleted file mode 100644 index 0e49aa7..0000000 --- a/assembly/src/sample-conf/activemq-jdbc.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - file:${activemq.conf}/credentials.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-leveldb-replicating.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-leveldb-replicating.xml b/assembly/src/sample-conf/activemq-leveldb-replicating.xml deleted file mode 100644 index c8a6560..0000000 --- a/assembly/src/sample-conf/activemq-leveldb-replicating.xml +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - file:${activemq.conf}/credentials.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-scalability.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-scalability.xml b/assembly/src/sample-conf/activemq-scalability.xml deleted file mode 100644 index 89d41ef..0000000 --- a/assembly/src/sample-conf/activemq-scalability.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-security.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-security.xml b/assembly/src/sample-conf/activemq-security.xml deleted file mode 100644 index 7b116ff..0000000 --- a/assembly/src/sample-conf/activemq-security.xml +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-specjms.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-specjms.xml b/assembly/src/sample-conf/activemq-specjms.xml deleted file mode 100644 index 2c8349c..0000000 --- a/assembly/src/sample-conf/activemq-specjms.xml +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-static-network-broker1.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-static-network-broker1.xml b/assembly/src/sample-conf/activemq-static-network-broker1.xml deleted file mode 100644 index 6503648..0000000 --- a/assembly/src/sample-conf/activemq-static-network-broker1.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-static-network-broker2.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-static-network-broker2.xml b/assembly/src/sample-conf/activemq-static-network-broker2.xml deleted file mode 100644 index 5f0d2da..0000000 --- a/assembly/src/sample-conf/activemq-static-network-broker2.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/activemq/blob/2ecf41d0/assembly/src/sample-conf/activemq-stomp.xml ---------------------------------------------------------------------- diff --git a/assembly/src/sample-conf/activemq-stomp.xml b/assembly/src/sample-conf/activemq-stomp.xml deleted file mode 100644 index fccdf10..0000000 --- a/assembly/src/sample-conf/activemq-stomp.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - file:${activemq.conf}/credentials.properties - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file