You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by bs...@apache.org on 2017/12/13 19:17:19 UTC

[49/51] [partial] activemq-web git commit: Initial commit

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/BrokerXmlConfigStartTest.java
----------------------------------------------------------------------
diff --git a/BrokerXmlConfigStartTest.java b/BrokerXmlConfigStartTest.java
new file mode 100644
index 0000000..c12da4f
--- /dev/null
+++ b/BrokerXmlConfigStartTest.java
@@ -0,0 +1,131 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.activemq.config;
+
+import java.io.File;
+import java.io.FileFilter;
+import java.io.FileInputStream;
+import java.net.URI;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.List;
+import java.util.Properties;
+import java.util.concurrent.TimeUnit;
+
+import javax.jms.Connection;
+
+import junit.framework.TestCase;
+import org.apache.activemq.ActiveMQConnectionFactory;
+import org.apache.activemq.broker.BrokerFactory;
+import org.apache.activemq.broker.BrokerService;
+import org.apache.activemq.broker.TransportConnector;
+import org.apache.activemq.transport.stomp.StompConnection;
+import org.apache.activemq.util.URISupport;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Ignore;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+@RunWith(value = Parameterized.class)
+public class BrokerXmlConfigStartTest {
+
+    private static final Logger LOG = LoggerFactory.getLogger(BrokerXmlConfigStartTest.class);
+    Properties secProps;
+
+    private String configUrl;
+
+    @Parameterized.Parameters
+    public static Collection<String[]> getTestParameters() {
+        List<String[]> configUrls = new ArrayList<String[]>();
+        configUrls.add(new String[]{"xbean:src/release/conf/activemq.xml"});
+
+        File sampleConfDir = new File("target/conf");
+        for (File xmlFile : sampleConfDir.listFiles(new FileFilter() {
+            public boolean accept(File pathname) {
+                return pathname.isFile() &&
+                        pathname.getName().startsWith("activemq-") &&
+                        pathname.getName().endsWith("xml");
+            }})) {
+
+            configUrls.add(new String[]{"xbean:" + sampleConfDir.getAbsolutePath() + "/" + xmlFile.getName()});
+        }
+
+        return configUrls;
+    }
+
+
+    public BrokerXmlConfigStartTest(String config) {
+        this.configUrl = config;
+    }
+
+    @Test
+    public void testStartBrokerUsingXmlConfig1() throws Exception {
+        BrokerService broker = null;
+        LOG.info("Broker config: " + configUrl);
+        System.err.println("Broker config: " + configUrl);
+        broker = BrokerFactory.createBroker(configUrl);
+        // alive, now try connect to connect
+        try {
+            for (TransportConnector transport : broker.getTransportConnectors()) {
+                final URI UriToConnectTo = URISupport.removeQuery(transport.getConnectUri());
+
+                if (UriToConnectTo.getScheme().startsWith("stomp")) {
+                    LOG.info("validating alive with connection to: " + UriToConnectTo);
+                    StompConnection connection = new StompConnection();
+                    connection.open(UriToConnectTo.getHost(), UriToConnectTo.getPort());
+                    connection.close();
+                    break;
+                } else if (UriToConnectTo.getScheme().startsWith("tcp")) {
+                    LOG.info("validating alive with connection to: " + UriToConnectTo);
+                    ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(UriToConnectTo);
+                    Connection connection = connectionFactory.createConnection(secProps.getProperty("activemq.username"),
+                            secProps.getProperty("activemq.password"));
+                    connection.start();
+                    connection.close();
+                    break;
+                } else {
+                    LOG.info("not validating connection to: " + UriToConnectTo);
+                }
+            }
+        } finally {
+            if (broker != null) {
+                broker.stop();
+                broker.waitUntilStopped();
+                broker = null;
+            }
+        }
+    }
+
+    @Before
+    public void setUp() throws Exception {
+        System.setProperty("activemq.base", "target");
+        System.setProperty("activemq.home", "target"); // not a valid home but ok for xml validation
+        System.setProperty("activemq.data", "target");
+        System.setProperty("activemq.conf", "target/conf");
+        secProps = new Properties();
+        secProps.load(new FileInputStream(new File("target/conf/credentials.properties")));
+    }
+
+    @After
+    public void tearDown() throws Exception {
+        TimeUnit.SECONDS.sleep(1);
+    }
+}

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2014-3576-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2014-3576-announcement.txt b/CVE-2014-3576-announcement.txt
new file mode 100644
index 0000000..1b92094
--- /dev/null
+++ b/CVE-2014-3576-announcement.txt
@@ -0,0 +1,18 @@
+CVE-2014-3576: Remote Unauthenticated Shutdown of Broker (DoS)
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.10.1
+
+Description:
+It is possible to shutdown an ActiveMQ broker remotely without authentication. The offending network packet is sent to the same port as a message consumer or producer would connect to. If the port is exposed,
+the attack will be possible.
+
+Mitigation:
+Upgrade to Apache ActiveMQ 5.11.0
+
+

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2014-3579-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2014-3579-announcement.txt b/CVE-2014-3579-announcement.txt
new file mode 100644
index 0000000..f302625
--- /dev/null
+++ b/CVE-2014-3579-announcement.txt
@@ -0,0 +1,18 @@
+CVE-2014-3579: Apache ActiveMQ Apollo XXE with XPath selectors
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ Apollo 1.0 - 1.7
+
+Description:
+It is possible for a consumer dequeuing XML message(s) to specify an XPath based selector thus causing the broker to evaluate the expression and attempt to match it against the messages in the queue while also performing an XML external entity resolution.
+
+Mitigation:
+Upgrade to Apache ActiveMQ Apollo 1.7.1
+
+Credit:
+This issue was discovered by Georgi Geshev from MWR Labs.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2014-3600-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2014-3600-announcement.txt b/CVE-2014-3600-announcement.txt
new file mode 100644
index 0000000..9c46c46
--- /dev/null
+++ b/CVE-2014-3600-announcement.txt
@@ -0,0 +1,18 @@
+CVE-2014-3600: Apache ActiveMQ XXE with XPath selectors
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.10.0
+
+Description:
+It is possible for a consumer dequeuing XML message(s) to specify an XPath based selector thus causing the broker to evaluate the expression and attempt to match it against the messages in the queue while also performing an XML external entity resolution.
+
+Mitigation:
+Upgrade to Apache ActiveMQ 5.10.1 or 5.11.0
+
+Credit:
+This issue was discovered by Georgi Geshev from MWR Labs.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2014-3612-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2014-3612-announcement.txt b/CVE-2014-3612-announcement.txt
new file mode 100644
index 0000000..453d8af
--- /dev/null
+++ b/CVE-2014-3612-announcement.txt
@@ -0,0 +1,19 @@
+CVE-2014-3612: ActiveMQ JAAS: LDAPLoginModule allows empty password authentication and Wildcard Interpretation
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.10.0
+
+Description:
+It was found that if a configured LDAP server supported the unauthenticated authentication mechanism (as described by RFC 4513), the LDAPLoginModule implementation, provided by ActiveMQ Java Authentication and Authorization Service (JAAS), would consider an authentication attempt to be successful for a valid user that provided an empty password. A remote attacker could use this flaw to bypass the authentication mechanism of an application using LDAPLoginModule, and assume a role of any valid user within that application. Additionally, when LDAP authentication is enabled, it is possible for an attacker to supply a wildcard operator instead of a username, which will effectively allow him to brute force a password for an unknown but valid account as opposed to brute forcing a combination of username and password. Once a valid password is found, the attacker can successfully authenticate with LDAP and publish/subscribe to a queue.
+
+
+Mitigation:
+Upgrade to Apache ActiveMQ 5.10.1 or 5.11.0
+
+Credit:
+This issue was discovered by Georgi Geshev from MWR Labs and Arun Babu Neelicattu from RedHat.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2014-8110-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2014-8110-announcement.txt b/CVE-2014-8110-announcement.txt
new file mode 100644
index 0000000..c6dbc14
--- /dev/null
+++ b/CVE-2014-8110-announcement.txt
@@ -0,0 +1,19 @@
+CVE-2014-8110: ActiveMQ Web Console - Cross-Site Scripting
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.10.0
+
+Description:
+Several instances of cross-site scripting vulnerabilities were identified to be present in the web based administration console. The root cause of this issue is improper user data output validation.
+
+
+Mitigation:
+Upgrade to Apache ActiveMQ 5.10.1 or 5.11.0
+
+Credit:
+This issue was discovered by Georgi Geshev from MWR Labs
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2015-1830-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2015-1830-announcement.txt b/CVE-2015-1830-announcement.txt
new file mode 100644
index 0000000..f73fc47
--- /dev/null
+++ b/CVE-2015-1830-announcement.txt
@@ -0,0 +1,28 @@
+CVE-2015-1830 - Path traversal leading to unauthenticated RCE in ActiveMQ
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.11.1
+
+Description:
+
+There is a directory traversal flaw in the fileserver upload/download functionality used for blob messages. 
+The attacker can put a jsp file in the admin console and execute shell command from there. It’s only vulnerable in the Windows OS.
+
+Mitigation:
+
+Upgrade to Apache ActiveMQ 5.12.0 or 5.11.2. The workaround in case fileserver is not used and upgrade is not prefereable is to disable that functionality. It can be done by removing (commenting out) the following lines from conf\jetty.xml file
+
+<bean class="org.eclipse.jetty.webapp.WebAppContext">
+    <property name="contextPath" value="/fileserver" />
+    <property name="resourceBase" value="${activemq.home}/webapps/fileserver" />
+    <property name="logUrlOnStart" value="true" />
+    <property name="parentLoaderPriority" value="true" />
+</bean>
+
+Credit:
+This issue was discovered by separated reports of David Jorm from IIX Product Security and Steven Seeley from Source Incite working with HP's Zero Day Initiative (ZDI)

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2015-5254-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2015-5254-announcement.txt b/CVE-2015-5254-announcement.txt
new file mode 100644
index 0000000..02e4806
--- /dev/null
+++ b/CVE-2015-5254-announcement.txt
@@ -0,0 +1,28 @@
+CVE-2015-5254 - Unsafe deserialization in ActiveMQ
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.12.1
+
+Description:
+
+JMS Object messages depends on Java Serialization for marshaling/unmashaling of the message payload. There are a couple of places inside the broker where deserialization can occur, like web console or stomp object message transformation. As deserialization of untrusted data can leaed to security flaws as demonstrated in various reports, this leaves the broker vunerable to this attack vector. Additionally, applications that consume ObjectMessage type of messages can be vunerable as they deserlize objects on ObjectMessage.getObject() calls.
+
+Mitigation:
+
+Upgrade to Apache ActiveMQ 5.13.0. Additionally if you're using ObjectMessage message type, you need to explicitly list trusted packages. To see how to do that, please take a look at: http://activemq.apache.org/objectmessage.html
+
+
+
+Credit:
+This issue was discovered by:
+
+* Alvaro Muñoz   -   @pwntester
+* Matthias Kaiser   -   @matthias_kaiser
+* Christian Schneider   -   @cschneider4711
+
+Special thanks to Matthias Kaiser for providing the detailed analysis of the vunerability.

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2015-7559-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2015-7559-announcement.txt b/CVE-2015-7559-announcement.txt
new file mode 100644
index 0000000..c4aecf0
--- /dev/null
+++ b/CVE-2015-7559-announcement.txt
@@ -0,0 +1,23 @@
+CVE-2015-7559 - DoS in client via shutdown command
+
+Severity: Low
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.14.4
+
+Description:
+
+It was found that Apache ActiveMQ client exposed a remote shutdown command in the ActiveMQConnection class. An attacker could use this flaw to achieve denial of service on a client.
+
+Mitigation:
+
+Upgrade to Apache ActiveMQ 5.14.5.
+
+
+
+Credit:
+
+Thanks to Chess Hazlett for reporting this vulnerability

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2016-0734-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2016-0734-announcement.txt b/CVE-2016-0734-announcement.txt
new file mode 100644
index 0000000..a7be1e9
--- /dev/null
+++ b/CVE-2016-0734-announcement.txt
@@ -0,0 +1,19 @@
+CVE-2016-0734: ActiveMQ Web Console - Clickjacking
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.13.1
+
+Description:
+The web based administration console does not set the X-Frame-Options header in HTTP responses. This allows the console to be embedded in a frame or iframe which could then be used to cause a user to perform an unintended action in the console.
+
+
+Mitigation:
+Upgrade to Apache ActiveMQ 5.13.2
+
+Credit:
+This issue was discovered by Michael Furman

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2016-0782-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2016-0782-announcement.txt b/CVE-2016-0782-announcement.txt
new file mode 100644
index 0000000..63ce81d
--- /dev/null
+++ b/CVE-2016-0782-announcement.txt
@@ -0,0 +1,19 @@
+CVE-2016-0782: ActiveMQ Web Console - Cross-Site Scripting
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.13.0
+
+Description:
+Several instances of cross-site scripting vulnerabilities were identified to be present in the web based administration console as well as the ability to trigger a Java memory dump into an arbitrary folder. The root cause of these issues are improper user data output validation and incorrect permissions configured on Jolokia.
+
+
+Mitigation:
+Upgrade to Apache ActiveMQ 5.11.4, 5.12.3, or 5.13.1
+
+Credit:
+This issue was discovered by Vladimir Ivanov (Positive Technologies)

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2016-3088-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2016-3088-announcement.txt b/CVE-2016-3088-announcement.txt
new file mode 100644
index 0000000..13aa59a
--- /dev/null
+++ b/CVE-2016-3088-announcement.txt
@@ -0,0 +1,26 @@
+CVE-2016-3088 - ActiveMQ Fileserver web application vulnerabilities
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.13.x
+
+Description:
+
+Multiple vulnerabilities have been identified in the Apache ActiveMQ Fileserver web application. These are similar to those reported in CVE-2015-1830 and can allow attackers to replace web application files with malicious code and perform remote code execution on the system.
+
+Mitigation:
+
+Fileserver feature will be completely removed starting with 5.14.0 release. Users are advised to use other FTP and HTTP based file servers for transferring blob messages. Fileserver web application SHOULD NOT be used in older version of the broker and it should be disabled (it has been disabled by default since 5.12.0). This can be done by removing (commenting out) the following lines from conf\jetty.xml file
+
+<bean class="org.eclipse.jetty.webapp.WebAppContext">
+    <property name="contextPath" value="/fileserver" />
+    <property name="resourceBase" value="${activemq.home}/webapps/fileserver" />
+    <property name="logUrlOnStart" value="true" />
+    <property name="parentLoaderPriority" value="true" />
+</bean>
+
+Credit:
+This issue was discovered by separated reports of Simon Zuckerbraun and Andrea Micalizzi (rgod) of Trend Micro Zero Day Initiative
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CVE-2016-6810-announcement.txt
----------------------------------------------------------------------
diff --git a/CVE-2016-6810-announcement.txt b/CVE-2016-6810-announcement.txt
new file mode 100644
index 0000000..27fe482
--- /dev/null
+++ b/CVE-2016-6810-announcement.txt
@@ -0,0 +1,19 @@
+CVE-2016-6810: ActiveMQ Web Console - Cross-Site Scripting
+
+Severity: Important
+
+Vendor:
+The Apache Software Foundation
+
+Versions Affected:
+Apache ActiveMQ 5.0.0 - 5.14.1
+
+Description:
+An instance of a cross-site scripting vulnerability was identified to be present in the web based administration console. The root cause of this issue is improper user data output validation.
+
+
+Mitigation:
+Upgrade to Apache ActiveMQ 5.14.2
+
+Credit:
+This issue was discovered by Toshitsugu Yoneyama of Mitsui Bussan Secure Directions, Inc. and was reported by JPCERT/CC.

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/CachedLDAPSecurityTest.java
----------------------------------------------------------------------
diff --git a/CachedLDAPSecurityTest.java b/CachedLDAPSecurityTest.java
new file mode 100644
index 0000000..ec22095
--- /dev/null
+++ b/CachedLDAPSecurityTest.java
@@ -0,0 +1,45 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.activemq.security;
+
+import org.apache.activemq.broker.BrokerFactory;
+import org.apache.directory.server.annotations.CreateLdapServer;
+import org.apache.directory.server.annotations.CreateTransport;
+import org.apache.directory.server.core.annotations.ApplyLdifFiles;
+import org.apache.directory.server.core.integ.FrameworkRunner;
+import org.junit.Before;
+import org.junit.runner.RunWith;
+
+@RunWith( FrameworkRunner.class )
+@CreateLdapServer(transports = {@CreateTransport(protocol = "LDAP")})
+@ApplyLdifFiles(
+        "org/apache/activemq/security/activemq-apacheds.ldif"
+)
+public class CachedLDAPSecurityTest extends CachedLDAPSecurityLegacyTest {
+
+    @Before
+    @Override
+    public void setup() throws Exception {
+        System.setProperty("ldapPort", String.valueOf(getLdapServer().getPort()));
+        
+        broker = BrokerFactory.createBroker("xbean:org/apache/activemq/security/activemq-apacheds.xml");
+        broker.start();
+        broker.waitUntilStarted();
+    }
+}
+
+

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Class Diagrams activemq-4.0-M4.zip
----------------------------------------------------------------------
diff --git a/Class Diagrams activemq-4.0-M4.zip b/Class Diagrams activemq-4.0-M4.zip
new file mode 100644
index 0000000..c278dec
Binary files /dev/null and b/Class Diagrams activemq-4.0-M4.zip differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Class-Diagrams-activemq-4.0-M4.zip
----------------------------------------------------------------------
diff --git a/Class-Diagrams-activemq-4.0-M4.zip b/Class-Diagrams-activemq-4.0-M4.zip
new file mode 100644
index 0000000..c278dec
Binary files /dev/null and b/Class-Diagrams-activemq-4.0-M4.zip differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Core Library Usage.JPG
----------------------------------------------------------------------
diff --git a/Core Library Usage.JPG b/Core Library Usage.JPG
new file mode 100644
index 0000000..7f9d59e
Binary files /dev/null and b/Core Library Usage.JPG differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Core-Library-Usage.JPG
----------------------------------------------------------------------
diff --git a/Core-Library-Usage.JPG b/Core-Library-Usage.JPG
new file mode 100644
index 0000000..7f9d59e
Binary files /dev/null and b/Core-Library-Usage.JPG differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/DiscardingDLQBroker.java
----------------------------------------------------------------------
diff --git a/DiscardingDLQBroker.java b/DiscardingDLQBroker.java
new file mode 100644
index 0000000..c31d0bb
--- /dev/null
+++ b/DiscardingDLQBroker.java
@@ -0,0 +1,143 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.activemq.plugin;
+
+import java.util.regex.Pattern;
+
+import org.apache.activemq.broker.Broker;
+import org.apache.activemq.broker.BrokerFilter;
+import org.apache.activemq.broker.ConnectionContext;
+import org.apache.activemq.broker.region.MessageReference;
+import org.apache.activemq.broker.region.Subscription;
+import org.apache.activemq.command.ActiveMQDestination;
+import org.apache.activemq.command.Message;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ */
+public class DiscardingDLQBroker extends BrokerFilter {
+    public static Logger log = LoggerFactory.getLogger(DiscardingDLQBroker.class);
+    private boolean dropTemporaryTopics = true;
+    private boolean dropTemporaryQueues = true;
+    private boolean dropAll = true;
+    private Pattern[] destFilter;
+    private int reportInterval = 1000;
+    private long dropCount = 0;
+
+    public DiscardingDLQBroker(Broker next) {
+        super(next);
+    }
+
+    @Override
+    public boolean sendToDeadLetterQueue(ConnectionContext ctx, MessageReference msgRef, Subscription subscription, Throwable poisonCause) {
+        if (log.isTraceEnabled()) {
+            log.trace("Discarding DLQ BrokerFilter[pass through] - skipping message:" + (msgRef != null ? msgRef.getMessage() : null));
+        }
+        boolean dropped = true;
+        Message msg = null;
+        ActiveMQDestination dest = null;
+        String destName = null;
+        msg = msgRef.getMessage();
+        dest = msg.getDestination();
+        destName = dest.getPhysicalName();
+
+        if (dest == null || destName == null) {
+            // do nothing, no need to forward it
+            skipMessage("NULL DESTINATION", msgRef);
+        } else if (dropAll) {
+            // do nothing
+            skipMessage("dropAll", msgRef);
+        } else if (dropTemporaryTopics && dest.isTemporary() && dest.isTopic()) {
+            // do nothing
+            skipMessage("dropTemporaryTopics", msgRef);
+        } else if (dropTemporaryQueues && dest.isTemporary() && dest.isQueue()) {
+            // do nothing
+            skipMessage("dropTemporaryQueues", msgRef);
+        } else if (destFilter != null && matches(destName)) {
+            // do nothing
+            skipMessage("dropOnly", msgRef);
+        } else {
+            dropped = false;
+            return next.sendToDeadLetterQueue(ctx, msgRef, subscription, poisonCause);
+        }
+
+        if (dropped && getReportInterval() > 0) {
+            if ((++dropCount) % getReportInterval() == 0) {
+                log.info("Total of " + dropCount + " messages were discarded, since their destination was the dead letter queue");
+            }
+        }
+
+        return false;
+    }
+
+    public boolean matches(String destName) {
+        for (int i = 0; destFilter != null && i < destFilter.length; i++) {
+            if (destFilter[i] != null && destFilter[i].matcher(destName).matches()) {
+                return true;
+            }
+        }
+        return false;
+    }
+
+    private void skipMessage(String prefix, MessageReference msgRef) {
+        if (log.isDebugEnabled()) {
+            String lmsg = "Discarding DLQ BrokerFilter[" + prefix + "] - skipping message:" + (msgRef != null ? msgRef.getMessage() : null);
+            log.debug(lmsg);
+        }
+    }
+
+    public void setDropTemporaryTopics(boolean dropTemporaryTopics) {
+        this.dropTemporaryTopics = dropTemporaryTopics;
+    }
+
+    public void setDropTemporaryQueues(boolean dropTemporaryQueues) {
+        this.dropTemporaryQueues = dropTemporaryQueues;
+    }
+
+    public void setDropAll(boolean dropAll) {
+        this.dropAll = dropAll;
+    }
+
+    public void setDestFilter(Pattern[] destFilter) {
+        this.destFilter = destFilter;
+    }
+
+    public void setReportInterval(int reportInterval) {
+        this.reportInterval = reportInterval;
+    }
+
+    public boolean isDropTemporaryTopics() {
+        return dropTemporaryTopics;
+    }
+
+    public boolean isDropTemporaryQueues() {
+        return dropTemporaryQueues;
+    }
+
+    public boolean isDropAll() {
+        return dropAll;
+    }
+
+    public Pattern[] getDestFilter() {
+        return destFilter;
+    }
+
+    public int getReportInterval() {
+        return reportInterval;
+    }
+}

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/DiscardingDLQBrokerPlugin.java
----------------------------------------------------------------------
diff --git a/DiscardingDLQBrokerPlugin.java b/DiscardingDLQBrokerPlugin.java
new file mode 100644
index 0000000..ef45788
--- /dev/null
+++ b/DiscardingDLQBrokerPlugin.java
@@ -0,0 +1,116 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.activemq.plugin;
+
+import java.util.ArrayList;
+import java.util.StringTokenizer;
+import java.util.regex.Pattern;
+
+import org.apache.activemq.broker.Broker;
+import org.apache.activemq.broker.BrokerPlugin;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * @author Filip Hanik
+ * @org.apache.xbean.XBean element="discardingDLQBrokerPlugin"
+ * @version 1.0
+ */
+public class DiscardingDLQBrokerPlugin implements BrokerPlugin {
+    public DiscardingDLQBrokerPlugin() {
+    }
+
+    public static Logger log = LoggerFactory.getLogger(DiscardingDLQBrokerPlugin.class);
+    private boolean dropTemporaryTopics = true;
+    private boolean dropTemporaryQueues = true;
+    private boolean dropAll = true;
+    private String dropOnly;
+    private int reportInterval = 1000;
+
+    /**
+     * Installs the plugin into the interceptor chain of the broker, returning the new intercepted broker to use.
+     * @param broker Broker
+     * @throws Exception
+     * @return Broker
+     * @todo Implement this org.apache.activemq.broker.BrokerPlugin method
+     */
+    public Broker installPlugin(Broker broker) throws Exception {
+        log.info("Installing Discarding Dead Letter Queue broker plugin[dropAll="+isDropAll()+
+                 "; dropTemporaryTopics="+isDropTemporaryTopics()+"; dropTemporaryQueues="+
+                 isDropTemporaryQueues()+"; dropOnly="+getDropOnly()+"; reportInterval="+
+                 getReportInterval()+"]");
+        DiscardingDLQBroker cb = new DiscardingDLQBroker(broker);
+        cb.setDropAll(isDropAll());
+        cb.setDropTemporaryQueues(isDropTemporaryQueues());
+        cb.setDropTemporaryTopics(isDropTemporaryTopics());
+        cb.setDestFilter(getDestFilter());
+        cb.setReportInterval(getReportInterval());
+        return cb;
+    }
+
+    public boolean isDropAll() {
+        return dropAll;
+    }
+
+    public boolean isDropTemporaryQueues() {
+        return dropTemporaryQueues;
+    }
+
+    public boolean isDropTemporaryTopics() {
+        return dropTemporaryTopics;
+    }
+
+    public String getDropOnly() {
+        return dropOnly;
+    }
+
+    public int getReportInterval() {
+        return reportInterval;
+    }
+
+    public void setDropTemporaryTopics(boolean dropTemporaryTopics) {
+        this.dropTemporaryTopics = dropTemporaryTopics;
+    }
+
+    public void setDropTemporaryQueues(boolean dropTemporaryQueues) {
+        this.dropTemporaryQueues = dropTemporaryQueues;
+    }
+
+    public void setDropAll(boolean dropAll) {
+        this.dropAll = dropAll;
+    }
+
+    public void setDropOnly(String dropOnly) {
+        this.dropOnly = dropOnly;
+    }
+
+    public void setReportInterval(int reportInterval) {
+        this.reportInterval = reportInterval;
+    }
+
+    public Pattern[] getDestFilter() {
+        if (getDropOnly()==null) return null;
+        ArrayList<Pattern> list = new ArrayList<Pattern>();
+        StringTokenizer t = new StringTokenizer(getDropOnly()," ");
+        while (t.hasMoreTokens()) {
+            String s = t.nextToken();
+            if (s!=null && s.trim().length()>0) list.add(Pattern.compile(s));
+        }
+        if (list.size()==0) return null;
+        return list.toArray(new Pattern[0]);
+    }
+}

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/DispatchFastConsumers.graffle
----------------------------------------------------------------------
diff --git a/DispatchFastConsumers.graffle b/DispatchFastConsumers.graffle
new file mode 100644
index 0000000..3de8f9e
Binary files /dev/null and b/DispatchFastConsumers.graffle differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/DispatchFastConsumers.png
----------------------------------------------------------------------
diff --git a/DispatchFastConsumers.png b/DispatchFastConsumers.png
new file mode 100644
index 0000000..f05c82c
Binary files /dev/null and b/DispatchFastConsumers.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/DispatchSlowConsumers.graffle
----------------------------------------------------------------------
diff --git a/DispatchSlowConsumers.graffle b/DispatchSlowConsumers.graffle
new file mode 100644
index 0000000..f032c54
Binary files /dev/null and b/DispatchSlowConsumers.graffle differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/DispatchSlowConsumers.png
----------------------------------------------------------------------
diff --git a/DispatchSlowConsumers.png b/DispatchSlowConsumers.png
new file mode 100644
index 0000000..b2172cd
Binary files /dev/null and b/DispatchSlowConsumers.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Example1-DirectoryStructure.jpg
----------------------------------------------------------------------
diff --git a/Example1-DirectoryStructure.jpg b/Example1-DirectoryStructure.jpg
new file mode 100644
index 0000000..1e09938
Binary files /dev/null and b/Example1-DirectoryStructure.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Example1-Entry.jpg
----------------------------------------------------------------------
diff --git a/Example1-Entry.jpg b/Example1-Entry.jpg
new file mode 100644
index 0000000..c2d84bb
Binary files /dev/null and b/Example1-Entry.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Example1-Topology.jpg
----------------------------------------------------------------------
diff --git a/Example1-Topology.jpg b/Example1-Topology.jpg
new file mode 100644
index 0000000..55b01b4
Binary files /dev/null and b/Example1-Topology.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Example1.jpg
----------------------------------------------------------------------
diff --git a/Example1.jpg b/Example1.jpg
new file mode 100644
index 0000000..a831bc2
Binary files /dev/null and b/Example1.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Example2-DirectoryStructure.jpg
----------------------------------------------------------------------
diff --git a/Example2-DirectoryStructure.jpg b/Example2-DirectoryStructure.jpg
new file mode 100644
index 0000000..e241e37
Binary files /dev/null and b/Example2-DirectoryStructure.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Example2-Topology.jpg
----------------------------------------------------------------------
diff --git a/Example2-Topology.jpg b/Example2-Topology.jpg
new file mode 100644
index 0000000..9ac6acf
Binary files /dev/null and b/Example2-Topology.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Example2.jpg
----------------------------------------------------------------------
diff --git a/Example2.jpg b/Example2.jpg
new file mode 100644
index 0000000..bb83e3a
Binary files /dev/null and b/Example2.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/FileCursor.graffle
----------------------------------------------------------------------
diff --git a/FileCursor.graffle b/FileCursor.graffle
new file mode 100644
index 0000000..d83a9d1
Binary files /dev/null and b/FileCursor.graffle differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/FileCursor.png
----------------------------------------------------------------------
diff --git a/FileCursor.png b/FileCursor.png
new file mode 100644
index 0000000..6fb0113
Binary files /dev/null and b/FileCursor.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Fisheye_logo.png
----------------------------------------------------------------------
diff --git a/Fisheye_logo.png b/Fisheye_logo.png
new file mode 100644
index 0000000..07b386a
Binary files /dev/null and b/Fisheye_logo.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/HEADER.html
----------------------------------------------------------------------
diff --git a/HEADER.html b/HEADER.html
new file mode 100644
index 0000000..34e8c81
--- /dev/null
+++ b/HEADER.html
@@ -0,0 +1,9 @@
+<html>
+	<body>
+		<h1>Apache ActiveMQ XML Schemas</h1>
+		
+		<p>This site contains all the various versions of the XML Schema Documents for the <a href="http://activemq.apache.org/">Apache ActiveMQ project</a></p>
+		
+		<p>For details of how to use the XML Schema files, particularly with Spring, please see the <a href="http://activemq.apache.org/xml-reference.html">XML Reference</a></p>
+	</body>
+</html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/I.png
----------------------------------------------------------------------
diff --git a/I.png b/I.png
new file mode 100644
index 0000000..e8512fb
Binary files /dev/null and b/I.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/JConsole Hierarchy.jpg
----------------------------------------------------------------------
diff --git a/JConsole Hierarchy.jpg b/JConsole Hierarchy.jpg
new file mode 100644
index 0000000..111a2df
Binary files /dev/null and b/JConsole Hierarchy.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/JConsole-Hierarchy.jpg
----------------------------------------------------------------------
diff --git a/JConsole-Hierarchy.jpg b/JConsole-Hierarchy.jpg
new file mode 100644
index 0000000..111a2df
Binary files /dev/null and b/JConsole-Hierarchy.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/JConsoleAMQ.png
----------------------------------------------------------------------
diff --git a/JConsoleAMQ.png b/JConsoleAMQ.png
new file mode 100644
index 0000000..0b0f3eb
Binary files /dev/null and b/JConsoleAMQ.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/KEYS
----------------------------------------------------------------------
diff --git a/KEYS b/KEYS
new file mode 100644
index 0000000..d0b8336
--- /dev/null
+++ b/KEYS
@@ -0,0 +1,157 @@
+pub   1024D/CCD6F801 2006-11-15
+uid                  Nathan Mittler <na...@gmail.com>
+sig 3        CCD6F801 2006-11-15  Nathan Mittler <na...@gmail.com>
+sub   2048g/F5B8EA6A 2006-11-15
+sig          CCD6F801 2006-11-15  Nathan Mittler <na...@gmail.com>
+
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.2.2 (FreeBSD)
+
+mQGiBEVbpV0RBADJcRJLaDaspQfYql0ok3H/8FKeosZ5zuy37QLICwB9wpqXkeGI
+QEemsKV+6Y0Tv9KVVyBDvMOYu8ZKdqTOkodf6Qd85ZcyMPXQpavcdhKnSnux8d4K
+CoPJtNRogomxi1G/haGJnXl5s1WlZ4ME5ijnaF2UbPYP+5flIW2iv0movwCgzOOl
+ImfG9K9kxmHDXyKrmr8stCUD/3z8cyrkhQ47twFwhBzMuSKhfhsZR78L/tfVajjl
+BSDzu4MUORnm7nx/cnMge9b1Kt0bFWpcalIbUQP/iGLQSyG49S77JrKEaxonQhQF
+Z7zXZMPkm1Y54t9KSPtpgRrV0GSObKj9slQ5FYabhoE/6RW+zwPvTDgJftmyCSIQ
+znlMA/4uhhuXoYJo0Jus3o2rqbQfj9dcEdL502BqKz2kITCKr+2U8DBAaY5xVGUW
+ETUmueKHSrZSXDqPkL5QeVMuASJVas7VmTheLXk5Kr+kc5/X5Sl10oCZoqSgx6Lq
+81bjcbMrHvFWLOmQG/E0zM10EOWw6fEVaFZQUz504UStZm7JqrQpTmF0aGFuIE1p
+dHRsZXIgPG5hdGhhbi5taXR0bGVyQGdtYWlsLmNvbT6IYAQTEQIAIAUCRVulXQIb
+AwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEMGEfSvM1vgBX+AAnRQbwrVjW+P+
+6ERiJ1ezS8EjJsgXAJ97jIS7CVD+DKp5u4gS4SfidmsxNLkCDQRFW6ViEAgA7ytH
+Cl5uvL7SMuOdt9YRZyR7QkhfgBkkJhIUk2MyKqZ/zXhTS9Qgx/D7ulS4auUjdRNe
+YzzuiFhv5qQS/KQB4Bi+FbvxisaR8fh9Yt+8cHZdUiDHhI49c/qhxyJea1ByJ3AP
+Clyr2aCEYLRb+475rYzp43rQLb7SqboWG4ajVmeEQTPqWwM77XqnTTOyTs4MZEJs
+ZO5by+ud23VOG7EF5VL5l8kgNzN8+HHk0q8KU9G0Cir4XMi8vtMtPqXsDSDTsyQU
+Lu9pEdMznY4m4ozFdnT1vxvy5bfoXtfhYNG+161MZbikuEwcLVknXB5fzyfZNZeq
+LHEDbMo4McR/Y/da7wADBQf9GAm5486yFNc1VeMtUs7JUgJVdMdK1hxtgyMpy6i3
+xKdgReV7Nw6Vk1vKhKD53rLXfy5fk8PycSLKC63A/vhO1mHydW6pXtumILOtYdZw
+9FUNRfZIUTPyqnbPx+PZi3jmkK63qIfu8DFzfjxV9RxjhmRVgrzuBvEKqo5dAHM0
+9JOMwumE8nmYM0jrUt40IAozkLorWxnZZVZx1zsZGsLj4+0V7IurWMEYmWnmd/iF
+nDZi6CggW9om4NJJ72rNAYiEgZjLL9xBBjYplhqMQBHR+pZ8Jl56i78ZA8DfPejx
+LM/E931dZyTMAakFsTnFmRf4+DN+PKF4zd3lQuFhxk17QYhJBBgRAgAJBQJFW6Vi
+AhsMAAoJEMGEfSvM1vgBuWgAnjqmxSJjNF84pGejBbEAgPHYOlWyAJ4vpBTlolF0
+1tcyAF4QTEDQbKvJwg==
+=ssQm
+-----END PGP PUBLIC KEY BLOCK-----
+pub   1024D/70AE7D08 2007-04-04
+uid                  Nathan Mittler <na...@gmail.com>
+sig 3        70AE7D08 2007-04-04  Nathan Mittler <na...@gmail.com>
+sub   1024g/A1255264 2007-04-04
+sig          70AE7D08 2007-04-04  Nathan Mittler <na...@gmail.com>
+
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.7 (Darwin)
+
+mQGiBEYTksURBADfn9FYnPKtlRhC0o6ScnPJLePomEpd22F2b8uuC+q+0A6YwvLz
+aDz9k0pEnvFFHdWjTZPUzDXEb4CjRjnoGz5hnZUNG8bJxgkwKt1nUawjYnOgy17b
+ekYmhLtyS2T6jtHx2qIHw/B9Xu0TfHZTBht1H8kFPliteJf46PTxXX3k6wCg9Dls
+YoKoV4cPodpJUiN8AmaKdh8EAKqfQEn4mkwUkBw4Th4KxIl3/YfnNeH4kL1ejp/m
+Pwdf3u7EhEcyCc2i9iNDgvjaUO0SZVD0cJShWq3Us8PT6vAB+WYvk4LWywc6tSTe
+G80Ma0KWX6CXuvFKjlS0K17PqS2G4kb8kUjgSJto/NqC6TBY7/R+X1rrXcx6NtWA
+a/cNBADAGSMJTJGUpPFXBrcncBAlfBLtXVfGGknplyjlfewi7FXopy3K3+otYune
+VHk6V/A/xULLRuGgx+GwytJRTGcNc84tuIDm2iiI4JT4E+a6Ghi5A+xucUpLLi2f
+6OMYDz2QH6IAbLXjSLUcSwW/YNg+1wFotQCKkQR5dmZgghM2PLQpTmF0aGFuIE1p
+dHRsZXIgPG5hdGhhbi5taXR0bGVyQGdtYWlsLmNvbT6IYAQTEQIAIAUCRhOSxQIb
+IwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEII00zVwrn0IlEgAoN+ULhiUYtPx
+MhMGj+i9NOtJqOKoAKDmic8ZTi3HDUpyEsOvV/FeUaBrIbkBDQRGE5LFEAQAt2cH
+aKxpQyewpsCupoC24FIdtPOxtK0fr1pM4n7zyCcjiEFVM5RzylyZg00IRcDxHE6N
+E6n6ydshZ3oM+UabvgltLpeEdJI02p0YccE7FA6iQ80ChMm4bjLUwsBW1Lw2zKza
+oDk0A8PNlmgjwHJi9yrw2nje8QH+aTvvtMj+WucAAwcD/05X6+YplQb4NPjUP7uG
+LzXuGOOS7msDBtqi3zOMzFbfY7H7OtF/SZmDzWDsZiQwq/nlTfernHCKe+/kUHTt
+9pJ7+5cGKFy5chgzVmCbYW6s8+IiaZVFLc5iWASqGhd/a9tEItughEK3pOt3kjud
+o0WcDTFOe9+YGbFAZg8kuMsbiEkEGBECAAkFAkYTksUCGwwACgkQgjTTNXCufQjL
+qQCeKZi8Gs8h9qS511FdlWnV0J6C2U4An0p+wQBKYckIUy5Fif3uWaHsSpa1
+=uYcU
+-----END PGP PUBLIC KEY BLOCK-----
+
+pub   1024D/F5A0DF5D 2008-06-21
+      Key fingerprint = F711 649B 6233 1E06 FBD4  38C2 7EF9 AB1D F5A0 DF5D
+uid                  Timothy Bish <ta...@gmail.com>
+sub   2048g/5B12A023 2008-06-21
+
+pub   4096R/012672EB 2009-12-15
+      Key fingerprint = 8539 E488 F5C9 7804 EB59  56FB 1B16 1203 0126 72EB
+uid                  Timothy Bish (CODE SIGNING KEY) <ta...@gmail.com>
+sub   4096R/82260FDE 2009-12-15
+
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.10 (GNU/Linux)
+
+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
+VdVAa+O9rw==
+=8877
+-----END PGP PUBLIC KEY BLOCK-----

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/L.png
----------------------------------------------------------------------
diff --git a/L.png b/L.png
new file mode 100644
index 0000000..eb334ed
Binary files /dev/null and b/L.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/LB Contributor Agreement.pdf
----------------------------------------------------------------------
diff --git a/LB Contributor Agreement.pdf b/LB Contributor Agreement.pdf
new file mode 100644
index 0000000..3326fdd
Binary files /dev/null and b/LB Contributor Agreement.pdf differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/LB-Contributor-Agreement.pdf
----------------------------------------------------------------------
diff --git a/LB-Contributor-Agreement.pdf b/LB-Contributor-Agreement.pdf
new file mode 100644
index 0000000..3326fdd
Binary files /dev/null and b/LB-Contributor-Agreement.pdf differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/LB_logo.jpg
----------------------------------------------------------------------
diff --git a/LB_logo.jpg b/LB_logo.jpg
new file mode 100644
index 0000000..9dd76f3
Binary files /dev/null and b/LB_logo.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/LB_logo_200.jpg
----------------------------------------------------------------------
diff --git a/LB_logo_200.jpg b/LB_logo_200.jpg
new file mode 100644
index 0000000..9f82613
Binary files /dev/null and b/LB_logo_200.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/LB_logo_200crop.jpg
----------------------------------------------------------------------
diff --git a/LB_logo_200crop.jpg b/LB_logo_200crop.jpg
new file mode 100644
index 0000000..9dd76f3
Binary files /dev/null and b/LB_logo_200crop.jpg differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/LICENSE.txt
----------------------------------------------------------------------
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..6b0b127
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,203 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Lminus.png
----------------------------------------------------------------------
diff --git a/Lminus.png b/Lminus.png
new file mode 100644
index 0000000..f7c43c0
Binary files /dev/null and b/Lminus.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Lplus.png
----------------------------------------------------------------------
diff --git a/Lplus.png b/Lplus.png
new file mode 100644
index 0000000..848ec2f
Binary files /dev/null and b/Lplus.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Makefile.am
----------------------------------------------------------------------
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..d09db5b
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,38 @@
+# ---------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+# 
+# http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ---------------------------------------------------------------------------
+
+# Since we don't strictly follow the GNU standard of having 'NEWS README AUTHORS ChangeLog' files
+AUTOMAKE_OPTIONS = foreign
+
+SUBDIRS = src/main src/examples
+if BUILD_CPPUNIT_TESTS
+  SUBDIRS += src/test src/test-integration src/test-benchmarks
+endif
+
+#Distribute these directories:
+DIST_SUBDIRS = src/main 
+
+bin_SCRIPTS = activemqcpp-config 
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = activemq-cpp.pc
+
+ACLOCAL_AMFLAGS = -I m4
+
+include doxygen-include.am
+
+EXTRA_DIST=autogen.sh $(DX_CONFIG) doc/html

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/Makefile.win
----------------------------------------------------------------------
diff --git a/Makefile.win b/Makefile.win
new file mode 100644
index 0000000..7e53738
--- /dev/null
+++ b/Makefile.win
@@ -0,0 +1,120 @@
+# Makefile.win for Win32 ActiveMQ-CPP
+#
+# Targets are:
+#
+#     build    - compile everything
+#     check    - run APR regression tests
+#     install  - compile everything
+#     clean    - mop up everything
+#
+# You can override the build mechansim, choose only one;
+#
+#     USEMAK=1 - compile from exported make files
+#     USESLN=1 - compile from converted .sln / .vcproj VC7+ files
+#
+# Define ARCH to your desired preference (your PATH must point
+# to the correct compiler tools!)  Choose only one;
+#
+#     ARCH="Win32"
+#     ARCH="x64"
+#
+# Set CONFIG to your desired build type.
+#
+#     CONFIG="ReleaseDLL"
+#     CONFIG="DebugDLL"
+#     CONFIG="Release"
+#     CONFIG="Debug"
+#
+# Set VERBOCITY to indicate how much information is logged about the build.
+#
+#     VERBOCITY=quiet
+#     VERBOCITY=minimal
+#     VERBOCITY=normal
+#     VERBOCITY=detailed
+#     VERBOCITY=diagnostic
+#
+# For example;
+#
+#   nmake -f Makefile.win PREFIX=C:\ActiveMQ-CPP build check install clean
+#
+
+!IF EXIST(".\vs2005-build\vs2005-activemq-cpp.sln") && ([msbuild /help > NUL 2>&1] == 0) \
+    && !defined(USEMAK)
+USESLN=1
+USEMAK=0
+!ELSEIF EXIST("activemq-cpp.mak")
+USESLN=0
+USEMAK=1
+!ENDIF
+
+CONFIGS="Release ReleaseDLL Debug DebugDLL"
+
+PREFIX=..\ActiveMQ-CPP
+CONFIG=Release
+VERBOCITY=Normal
+
+!IF [$(COMSPEC) /c cl /nologo /? \
+	| $(SystemRoot)\System32\find.exe "x64" >NUL ] == 0
+ARCH=x64
+!ELSE
+ARCH=Win32
+!ENDIF
+
+!IF "$(CONFIG)" == "Debug" || "$(CONFIG)" == "DebugDLL"
+POSTFIX="d"
+!ENDIF
+
+!MESSAGE ARCH          = $(ARCH)
+!MESSAGE CONFIG        = $(CONFIG)
+!MESSAGE VERBOCITY     = $(VERBOCITY)
+!MESSAGE PREFIX        = $(PREFIX)  (install path)
+
+rebuild: clean build
+
+all: build check
+
+clean:
+	cd vs2005-build
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq:Clean /p:Configuration=$(CONFIG);Platform=$(ARCH) /verbosity:$(VERBOCITY)
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq-example:Clean /p:Configuration=$(CONFIG);Platform=$(ARCH)
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq-integration-tests:Clean /p:Configuration=$(CONFIG);Platform=$(ARCH)
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq-unittests:Clean /p:Configuration=$(CONFIG);Platform=$(ARCH)
+	cd ..
+
+build:
+	cd vs2005-build
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq /p:Configuration=$(CONFIG);Platform=$(ARCH) /verbosity:$(VERBOCITY)
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq-example /p:Configuration=$(CONFIG);Platform=$(ARCH)
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq-integration-tests /p:Configuration=$(CONFIG);Platform=$(ARCH)
+	-msbuild vs2005-activemq-cpp.sln /t:vs2005-activemq-unittests /p:Configuration=$(CONFIG);Platform=$(ARCH)
+	cd ..
+
+checkamq:
+	cd vs2005-build\$(CONFIG)
+	.\vs2005-activemq-unittests.exe
+	cd ..\..\
+
+check: checkamq
+
+install:
+	echo Y >.y
+	echo A >.A
+	@if NOT EXIST "$(PREFIX)\."		mkdir "$(PREFIX)"
+	@if NOT EXIST "$(PREFIX)\bin\."		mkdir "$(PREFIX)\bin"
+	@if NOT EXIST "$(PREFIX)\include\."	mkdir "$(PREFIX)\include"
+	@if NOT EXIST "$(PREFIX)\lib\."		mkdir "$(PREFIX)\lib"
+	copy RELEASE_NOTES.txt "$(PREFIX)\RELEASE_NOTES.txt" <.y
+	copy LICENSE.txt "$(PREFIX)\LICENSE.txt" <.y
+	copy NOTICE.txt  "$(PREFIX)\NOTICE.txt"  <.y
+	xcopy src\main\*.h		"$(PREFIX)\include\" /s /d < .a
+!IF "$(CONFIG)" == "Debug" || "$(CONFIG)" == "Release"
+	copy .\vs2005-build\$(ARCH)\$(CONFIG)\libactivemq-cpp$(POSTFIX).lib		"$(PREFIX)\lib\" <.y
+!ELSE
+	copy .\vs2005-build\$(ARCH)\$(CONFIG)\activemq-cpp$(POSTFIX).lib		"$(PREFIX)\lib\" <.y
+	copy .\vs2005-build\$(ARCH)\$(CONFIG)\activemq-cpp$(POSTFIX).exp		"$(PREFIX)\lib\" <.y
+	copy .\vs2005-build\$(ARCH)\$(CONFIG)\activemq-cpp$(POSTFIX).dll		"$(PREFIX)\bin\" <.y
+	copy .\vs2005-build\$(ARCH)\$(CONFIG)\activemq-cpp$(POSTFIX).pdb		"$(PREFIX)\bin\" <.y
+!ENDIF
+	del .y
+	del .a
+

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/MasterFailed.pdf
----------------------------------------------------------------------
diff --git a/MasterFailed.pdf b/MasterFailed.pdf
new file mode 100644
index 0000000..b947a28
Binary files /dev/null and b/MasterFailed.pdf differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/MasterFailed.png
----------------------------------------------------------------------
diff --git a/MasterFailed.png b/MasterFailed.png
new file mode 100644
index 0000000..7455f5a
Binary files /dev/null and b/MasterFailed.png differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/MasterRestarted.pdf
----------------------------------------------------------------------
diff --git a/MasterRestarted.pdf b/MasterRestarted.pdf
new file mode 100644
index 0000000..7265612
Binary files /dev/null and b/MasterRestarted.pdf differ

http://git-wip-us.apache.org/repos/asf/activemq-web/blob/c5128cb5/MasterRestarted.png
----------------------------------------------------------------------
diff --git a/MasterRestarted.png b/MasterRestarted.png
new file mode 100644
index 0000000..b779d69
Binary files /dev/null and b/MasterRestarted.png differ