-
-
Save ryantm/75a38f56ec988a7d1c3aa8077e13f161 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/nix/store/p2s5kfwq5ladpf3aw7jr7akllw6b1njn-apache-activemq-5.14.5 | |
├── activemq-all-5.14.5.jar | |
├── bin | |
│ ├── activemq | |
│ ├── activemq-diag | |
│ ├── activemq.jar | |
│ ├── env | |
│ ├── linux-x86-32 | |
│ │ ├── activemq | |
│ │ ├── libwrapper.so | |
│ │ ├── wrapper | |
│ │ └── wrapper.conf | |
│ ├── linux-x86-64 | |
│ │ ├── activemq | |
│ │ ├── libwrapper.so | |
│ │ ├── wrapper | |
│ │ └── wrapper.conf | |
│ ├── macosx | |
│ │ ├── activemq | |
│ │ ├── libwrapper.jnilib | |
│ │ ├── wrapper | |
│ │ └── wrapper.conf | |
│ └── wrapper.jar | |
├── conf | |
│ ├── activemq.xml | |
│ ├── broker.ks | |
│ ├── broker-localhost.cert | |
│ ├── broker.ts | |
│ ├── client.ks | |
│ ├── client.ts | |
│ ├── credentials-enc.properties | |
│ ├── credentials.properties | |
│ ├── groups.properties | |
│ ├── java.security | |
│ ├── jetty-realm.properties | |
│ ├── jetty.xml | |
│ ├── jmx.access | |
│ ├── jmx.password | |
│ ├── log4j.properties | |
│ ├── logging.properties | |
│ ├── login.config | |
│ └── users.properties | |
├── data | |
│ └── activemq.log | |
├── docs | |
│ ├── index.html | |
│ ├── user-guide.html | |
│ └── WebConsole-README.txt | |
├── examples | |
│ ├── amqp | |
│ │ ├── java | |
│ │ │ ├── pom.xml | |
│ │ │ ├── readme.md | |
│ │ │ └── src | |
│ │ │ └── main | |
│ │ │ └── java | |
│ │ │ └── example | |
│ │ │ ├── Listener.java | |
│ │ │ └── Publisher.java | |
│ │ └── python | |
│ │ ├── listener.py | |
│ │ └── publisher.py | |
│ ├── conf | |
│ │ ├── activemq-demo.xml | |
│ │ ├── activemq-dynamic-network-broker1.xml | |
│ │ ├── activemq-dynamic-network-broker2.xml | |
│ │ ├── activemq-jdbc-performance.xml | |
│ │ ├── activemq-jdbc.xml | |
│ │ ├── activemq-leveldb-replicating.xml | |
│ │ ├── activemq-mqtt.xml | |
│ │ ├── activemq-scalability.xml | |
│ │ ├── activemq-security.xml | |
│ │ ├── activemq-specjms.xml | |
│ │ ├── activemq-static-network-broker1.xml | |
│ │ ├── activemq-static-network-broker2.xml | |
│ │ ├── activemq-stomp.xml | |
│ │ ├── activemq-throughput.xml | |
│ │ ├── activemq.xml | |
│ │ ├── camel.xml | |
│ │ ├── jetty-demo.xml | |
│ │ ├── log4j.properties | |
│ │ ├── resin-web.xml | |
│ │ └── web.xml | |
│ ├── mqtt | |
│ │ ├── java | |
│ │ │ ├── pom.xml | |
│ │ │ ├── readme.md | |
│ │ │ └── src | |
│ │ │ └── main | |
│ │ │ └── java | |
│ │ │ └── example | |
│ │ │ ├── Listener.java | |
│ │ │ └── Publisher.java | |
│ │ └── websocket | |
│ │ ├── css | |
│ │ │ ├── bootstrap.min.css | |
│ │ │ └── bootstrap.min.responsive.css | |
│ │ ├── img | |
│ │ │ ├── glyphicons-halflings.png | |
│ │ │ └── glyphicons-halflings-white.png | |
│ │ ├── index.html | |
│ │ ├── js | |
│ │ │ ├── jquery-1.7.2.min.js | |
│ │ │ └── mqttws31.js | |
│ │ └── readme.md | |
│ ├── openwire | |
│ │ ├── advanced-scenarios | |
│ │ │ ├── jms-example-composite-destinations | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── composite | |
│ │ │ │ └── dest | |
│ │ │ │ ├── Consumer.java | |
│ │ │ │ └── Producer.java | |
│ │ │ ├── jms-example-durable-sub | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── topic | |
│ │ │ │ └── durable | |
│ │ │ │ ├── Publisher.java | |
│ │ │ │ └── Subscriber.java | |
│ │ │ ├── jms-example-exclusive-consumer | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── queue | |
│ │ │ │ └── exclusive | |
│ │ │ │ ├── Consumer.java | |
│ │ │ │ └── Producer.java | |
│ │ │ ├── jms-example-message-browser | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── browser | |
│ │ │ │ ├── Browser.java | |
│ │ │ │ └── Producer.java | |
│ │ │ ├── jms-example-queue | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ ├── java | |
│ │ │ │ │ └── example | |
│ │ │ │ │ └── queue | |
│ │ │ │ │ ├── Consumer.java | |
│ │ │ │ │ └── Producer.java | |
│ │ │ │ └── resources | |
│ │ │ │ └── log4j.properties | |
│ │ │ ├── jms-example-queue-selector | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── queue | |
│ │ │ │ └── selector | |
│ │ │ │ ├── Consumer.java | |
│ │ │ │ └── Producer.java | |
│ │ │ ├── jms-example-temp-destinations | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── tempdest | |
│ │ │ │ ├── Consumer.java | |
│ │ │ │ └── ProducerRequestReply.java | |
│ │ │ ├── jms-example-topic | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ ├── java | |
│ │ │ │ │ └── example | |
│ │ │ │ │ └── topic | |
│ │ │ │ │ ├── Publisher.java | |
│ │ │ │ │ └── Subscriber.java | |
│ │ │ │ └── resources | |
│ │ │ │ └── log4j.properties | |
│ │ │ ├── jms-example-transaction | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── transaction | |
│ │ │ │ └── Client.java | |
│ │ │ ├── jms-example-wildcard-consumer | |
│ │ │ │ ├── pom.xml | |
│ │ │ │ ├── readme.md | |
│ │ │ │ └── src | |
│ │ │ │ └── main | |
│ │ │ │ └── java | |
│ │ │ │ └── example | |
│ │ │ │ └── wildcard | |
│ │ │ │ └── Client.java | |
│ │ │ ├── pom.xml | |
│ │ │ └── readme.md | |
│ │ ├── cpp | |
│ │ │ ├── Listener.cpp | |
│ │ │ ├── Publisher.cpp | |
│ │ │ └── readme.md | |
│ │ ├── csharp | |
│ │ │ ├── ActiveMQExamples | |
│ │ │ │ ├── ActiveMQExamples.sln | |
│ │ │ │ ├── ActiveMQExamples.userprefs | |
│ │ │ │ ├── Listener | |
│ │ │ │ │ ├── AssemblyInfo.cs | |
│ │ │ │ │ ├── Listener.cs | |
│ │ │ │ │ ├── Listener.csproj | |
│ │ │ │ │ └── NMSTracer.cs | |
│ │ │ │ └── Publisher | |
│ │ │ │ ├── AssemblyInfo.cs | |
│ │ │ │ ├── NMSTracer.cs | |
│ │ │ │ ├── Publisher.cs | |
│ │ │ │ └── Publisher.csproj | |
│ │ │ └── readme.md | |
│ │ ├── ecommerce | |
│ │ │ ├── build.xml | |
│ │ │ ├── README.txt | |
│ │ │ └── src | |
│ │ │ ├── Retailer.java | |
│ │ │ ├── Supplier.java | |
│ │ │ ├── TransactionsDemo.java | |
│ │ │ └── Vendor.java | |
│ │ ├── exploring-jms | |
│ │ │ ├── build.xml | |
│ │ │ ├── conf | |
│ │ │ │ └── log4j.properties | |
│ │ │ ├── QueuePTPSamples | |
│ │ │ │ ├── QueueMonitor | |
│ │ │ │ │ ├── QueueMonitor.java | |
│ │ │ │ │ └── QueueMonitor.properties | |
│ │ │ │ ├── QueueRoundTrip | |
│ │ │ │ │ └── QueueRoundTrip.java | |
│ │ │ │ ├── RequestReply | |
│ │ │ │ │ ├── Replier.java | |
│ │ │ │ │ └── Requestor.java | |
│ │ │ │ ├── SelectorTalk | |
│ │ │ │ │ └── SelectorTalk.java | |
│ │ │ │ ├── Talk | |
│ │ │ │ │ └── Talk.java | |
│ │ │ │ └── TransactedTalk | |
│ │ │ │ └── TransactedTalk.java | |
│ │ │ ├── readme.txt | |
│ │ │ └── TopicPubSubSamples | |
│ │ │ ├── Chat | |
│ │ │ │ └── Chat.java | |
│ │ │ ├── DurableChat | |
│ │ │ │ └── DurableChat.java | |
│ │ │ ├── HierarchicalChat | |
│ │ │ │ └── HierarchicalChat.java | |
│ │ │ ├── MessageMonitor | |
│ │ │ │ ├── MessageMonitor.java | |
│ │ │ │ └── MessageMonitor.properties | |
│ │ │ ├── RequestReply | |
│ │ │ │ ├── TopicReplier.java | |
│ │ │ │ └── TopicRequestor.java | |
│ │ │ ├── SelectorChat | |
│ │ │ │ └── SelectorChat.java | |
│ │ │ └── TransactedChat | |
│ │ │ └── TransactedChat.java | |
│ │ ├── java | |
│ │ │ ├── pom.xml | |
│ │ │ ├── readme.md | |
│ │ │ └── src | |
│ │ │ └── main | |
│ │ │ └── java | |
│ │ │ └── example | |
│ │ │ ├── Listener.java | |
│ │ │ └── Publisher.java | |
│ │ └── swissarmy | |
│ │ ├── build.xml | |
│ │ ├── readme.md | |
│ │ └── src | |
│ │ ├── CommandLineSupport.java | |
│ │ ├── ConsumerTool.java | |
│ │ ├── EmbeddedBroker.java | |
│ │ ├── jndi.properties | |
│ │ ├── Log4jJMSAppenderExample.java | |
│ │ ├── log4j-jms.properties | |
│ │ ├── ProducerAndConsumerTool.java | |
│ │ ├── ProducerTool.java | |
│ │ ├── RequesterTool.java | |
│ │ ├── StompExample.java | |
│ │ ├── TopicListener.java | |
│ │ └── TopicPublisher.java | |
│ └── stomp | |
│ ├── cpp | |
│ │ ├── Listener.cpp | |
│ │ ├── Publisher.cpp | |
│ │ └── readme.md | |
│ ├── csharp | |
│ │ ├── ActiveMQExamples | |
│ │ │ ├── ActiveMQExamples.sln | |
│ │ │ ├── ActiveMQExamples.userprefs | |
│ │ │ ├── Listener | |
│ │ │ │ ├── AssemblyInfo.cs | |
│ │ │ │ ├── Listener.cs | |
│ │ │ │ ├── Listener.csproj | |
│ │ │ │ └── NMSTracer.cs | |
│ │ │ └── Publisher | |
│ │ │ ├── AssemblyInfo.cs | |
│ │ │ ├── NMSTracer.cs | |
│ │ │ ├── Publisher.cs | |
│ │ │ └── Publisher.csproj | |
│ │ └── readme.md | |
│ ├── java | |
│ │ ├── pom.xml | |
│ │ ├── readme.md | |
│ │ └── src | |
│ │ └── main | |
│ │ └── java | |
│ │ └── example | |
│ │ ├── Listener.java | |
│ │ └── Publisher.java | |
│ ├── perl | |
│ │ ├── listener | |
│ │ ├── publisher | |
│ │ └── readme.md | |
│ ├── php | |
│ │ ├── listener.php | |
│ │ ├── publisher.php | |
│ │ └── readme.md | |
│ ├── python | |
│ │ ├── readme.md | |
│ │ ├── stompest | |
│ │ │ ├── async | |
│ │ │ │ ├── __init__.py | |
│ │ │ │ ├── listener.py | |
│ │ │ │ └── publisher.py | |
│ │ │ ├── readme.md | |
│ │ │ └── sync | |
│ │ │ ├── __init__.py | |
│ │ │ ├── listener.py | |
│ │ │ └── publisher.py | |
│ │ └── stomppy | |
│ │ ├── listener.py | |
│ │ ├── publisher.py | |
│ │ └── readme.md | |
│ ├── ruby | |
│ │ ├── catstomp.rb | |
│ │ ├── listener.rb | |
│ │ ├── publisher.rb | |
│ │ ├── readme.md | |
│ │ └── stompcat.rb | |
│ └── websocket | |
│ ├── css | |
│ │ ├── bootstrap.min.css | |
│ │ └── bootstrap.min.responsive.css | |
│ ├── img | |
│ │ ├── glyphicons-halflings.png | |
│ │ └── glyphicons-halflings-white.png | |
│ ├── index.html | |
│ ├── js | |
│ │ ├── jquery-1.7.2.min.js | |
│ │ └── stomp.js | |
│ └── readme.md | |
├── lib | |
│ ├── activemq-broker-5.14.5.jar | |
│ ├── activemq-client-5.14.5.jar | |
│ ├── activemq-console-5.14.5.jar | |
│ ├── activemq-jaas-5.14.5.jar | |
│ ├── activemq-kahadb-store-5.14.5.jar | |
│ ├── activemq-openwire-legacy-5.14.5.jar | |
│ ├── activemq-protobuf-1.1.jar | |
│ ├── activemq-rar.txt | |
│ ├── activemq-spring-5.14.5.jar | |
│ ├── activemq-web-5.14.5.jar | |
│ ├── camel | |
│ │ ├── activemq-camel-5.14.5.jar | |
│ │ ├── camel-core-2.16.3.jar | |
│ │ ├── camel-jms-2.16.3.jar | |
│ │ └── camel-spring-2.16.3.jar | |
│ ├── classpath.env | |
│ ├── extra | |
│ │ └── mqtt-client-1.14.jar | |
│ ├── geronimo-j2ee-management_1.1_spec-1.0.1.jar | |
│ ├── geronimo-jms_1.1_spec-1.1.1.jar | |
│ ├── geronimo-jta_1.0.1B_spec-1.0.1.jar | |
│ ├── hawtbuf-1.11.jar | |
│ ├── jcl-over-slf4j-1.7.13.jar | |
│ ├── optional | |
│ │ ├── activeio-core-3.1.4.jar | |
│ │ ├── activemq-amqp-5.14.5.jar | |
│ │ ├── activemq-http-5.14.5.jar | |
│ │ ├── activemq-jdbc-store-5.14.5.jar | |
│ │ ├── activemq-jms-pool-5.14.5.jar | |
│ │ ├── activemq-leveldb-store-5.14.5.jar | |
│ │ ├── activemq-log4j-appender-5.14.5.jar | |
│ │ ├── activemq-mqtt-5.14.5.jar | |
│ │ ├── activemq-partition-5.14.5.jar | |
│ │ ├── activemq-pool-5.14.5.jar | |
│ │ ├── activemq-runtime-config-5.14.5.jar | |
│ │ ├── activemq-shiro-5.14.5.jar | |
│ │ ├── activemq-stomp-5.14.5.jar | |
│ │ ├── commons-beanutils-1.9.2.jar | |
│ │ ├── commons-codec-1.9.jar | |
│ │ ├── commons-collections-3.2.2.jar | |
│ │ ├── commons-dbcp2-2.1.1.jar | |
│ │ ├── commons-lang-2.6.jar | |
│ │ ├── commons-net-3.5.jar | |
│ │ ├── commons-pool2-2.4.2.jar | |
│ │ ├── geronimo-j2ee-connector_1.5_spec-2.0.0.jar | |
│ │ ├── guava-12.0.jar | |
│ │ ├── hawtbuf-proto-1.11.jar | |
│ │ ├── hawtdispatch-1.22.jar | |
│ │ ├── hawtdispatch-scala-2.11-1.22.jar | |
│ │ ├── hawtdispatch-transport-1.22.jar | |
│ │ ├── hawtjni-runtime-1.9.jar | |
│ │ ├── httpclient-4.5.2.jar | |
│ │ ├── httpcore-4.4.5.jar | |
│ │ ├── insight-log4j-1.2.0.Beta4.jar | |
│ │ ├── insight-log-core-1.2.0.Beta4.jar | |
│ │ ├── jackson-annotations-2.6.3.jar | |
│ │ ├── jackson-core-2.6.3.jar | |
│ │ ├── jackson-databind-2.6.3.jar | |
│ │ ├── jasypt-1.9.2.jar | |
│ │ ├── jasypt-spring31-1.9.2.jar | |
│ │ ├── jaxb2-basics-runtime-0.6.4.jar | |
│ │ ├── jettison-1.3.8.jar | |
│ │ ├── jmdns-3.4.1.jar | |
│ │ ├── leveldb-0.6.jar | |
│ │ ├── leveldb-api-0.6.jar | |
│ │ ├── leveldbjni-1.8.jar | |
│ │ ├── log4j-1.2.17.jar | |
│ │ ├── org.apache.servicemix.bundles.josql-1.5_5.jar | |
│ │ ├── org.linkedin.util-core-1.4.0.jar | |
│ │ ├── org.linkedin.zookeeper-impl-1.4.0.jar | |
│ │ ├── proton-j-0.16.0.jar | |
│ │ ├── scala-library-2.11.0.jar | |
│ │ ├── shiro-core-1.2.4.jar | |
│ │ ├── shiro-spring-1.2.4.jar | |
│ │ ├── slf4j-log4j12-1.7.13.jar | |
│ │ ├── snappy-0.2.jar | |
│ │ ├── snappy-java-1.1.2.jar | |
│ │ ├── spring-aop-4.1.9.RELEASE.jar | |
│ │ ├── spring-beans-4.1.9.RELEASE.jar | |
│ │ ├── spring-context-4.1.9.RELEASE.jar | |
│ │ ├── spring-core-4.1.9.RELEASE.jar | |
│ │ ├── spring-expression-4.1.9.RELEASE.jar | |
│ │ ├── spring-jms-4.1.9.RELEASE.jar | |
│ │ ├── spring-oxm-4.1.9.RELEASE.jar | |
│ │ ├── spring-tx-4.1.9.RELEASE.jar | |
│ │ ├── velocity-1.7.jar | |
│ │ ├── xbean-spring-4.2.jar | |
│ │ ├── xpp3-1.1.4c.jar | |
│ │ ├── xstream-1.4.9.jar | |
│ │ └── zookeeper-3.4.6.jar | |
│ ├── slf4j-api-1.7.13.jar | |
│ └── web | |
│ ├── apache-el-8.0.9.M3.jar | |
│ ├── apache-jsp-8.0.9.M3.jar | |
│ ├── apache-jsp-9.2.13.v20150730.jar | |
│ ├── apache-jstl-9.2.13.v20150730.jar | |
│ ├── asm-5.0.4.jar | |
│ ├── geronimo-annotation_1.0_spec-1.1.1.jar | |
│ ├── jdom-1.0.jar | |
│ ├── jetty-all-9.2.13.v20150730.jar | |
│ ├── jolokia-core-1.3.3.jar | |
│ ├── json-simple-1.1.1.jar | |
│ ├── org.eclipse.jdt.core-3.8.2.v20130121.jar | |
│ ├── rome-1.0.jar | |
│ ├── spring-web-4.1.9.RELEASE.jar | |
│ ├── spring-webmvc-4.1.9.RELEASE.jar | |
│ ├── taglibs-standard-impl-1.2.5.jar | |
│ ├── taglibs-standard-spec-1.2.5.jar | |
│ ├── tomcat-servlet-api-8.0.24.jar | |
│ └── tomcat-websocket-api-8.0.24.jar | |
├── LICENSE | |
├── NOTICE | |
├── README.txt | |
├── webapps | |
│ ├── admin | |
│ │ ├── 403.html | |
│ │ ├── 404.html | |
│ │ ├── 500.html | |
│ │ ├── browse.jsp | |
│ │ ├── connection.jsp | |
│ │ ├── connections.jsp | |
│ │ ├── decorators | |
│ │ │ ├── footer.jsp | |
│ │ │ ├── header.jsp | |
│ │ │ └── head.jsp | |
│ │ ├── graph.jsp | |
│ │ ├── images | |
│ │ │ ├── activemq-logo.png | |
│ │ │ ├── asf-logo.png | |
│ │ │ ├── big-bullet.png | |
│ │ │ ├── black-footer-bottom.png | |
│ │ │ ├── black-footer-left.png | |
│ │ │ ├── black-footer-right.png | |
│ │ │ ├── bottom-red-bar.png | |
│ │ │ ├── checker-bg.png | |
│ │ │ ├── content-left.png | |
│ │ │ ├── content-right.png | |
│ │ │ ├── feed_atom.png | |
│ │ │ ├── feed_rss.png | |
│ │ │ ├── left-box-bottom.png | |
│ │ │ ├── left-box-right.png | |
│ │ │ ├── left-box-top.png | |
│ │ │ ├── oval-arrow.png | |
│ │ │ ├── right-box-bottom.png | |
│ │ │ ├── right-box-left.png | |
│ │ │ ├── right-box-top.png | |
│ │ │ ├── small-bullet-gray.png | |
│ │ │ ├── small-bullet-red.png | |
│ │ │ ├── spacer.gif | |
│ │ │ ├── top-red-bar.png | |
│ │ │ ├── white-header-left.png | |
│ │ │ ├── white-header-right.png | |
│ │ │ └── white-header-top.png | |
│ │ ├── index.jsp | |
│ │ ├── js | |
│ │ │ ├── common.js | |
│ │ │ ├── css.js | |
│ │ │ ├── mochi | |
│ │ │ │ ├── MochiKit.js | |
│ │ │ │ └── __package__.js | |
│ │ │ ├── plotkit | |
│ │ │ │ ├── Base.js | |
│ │ │ │ ├── Canvas.js | |
│ │ │ │ ├── dummy.svg | |
│ │ │ │ ├── iecanvas.htc | |
│ │ │ │ ├── Layout.js | |
│ │ │ │ ├── SVG.js | |
│ │ │ │ ├── SweetCanvas.js | |
│ │ │ │ └── SweetSVG.js | |
│ │ │ ├── prettify.js | |
│ │ │ └── standardista-table-sorting.js | |
│ │ ├── login.html | |
│ │ ├── message.jsp | |
│ │ ├── META-INF | |
│ │ │ ├── LICENSE | |
│ │ │ └── NOTICE | |
│ │ ├── network.jsp | |
│ │ ├── queueConsumers.jsp | |
│ │ ├── queueGraph.jsp | |
│ │ ├── queueProducers.jsp | |
│ │ ├── queues.jsp | |
│ │ ├── scheduled.jsp | |
│ │ ├── send.jsp | |
│ │ ├── slave.jsp | |
│ │ ├── styles | |
│ │ │ ├── prettify.css | |
│ │ │ ├── site.css | |
│ │ │ ├── sorttable.css | |
│ │ │ └── type-settings.css | |
│ │ ├── subscribers.jsp | |
│ │ ├── test | |
│ │ │ ├── dummy.jsp | |
│ │ │ ├── index.jsp | |
│ │ │ └── systemProperties.jsp | |
│ │ ├── topicProducers.jsp | |
│ │ ├── topics.jsp | |
│ │ ├── topicSubscribers.jsp | |
│ │ ├── WEB-INF | |
│ │ │ ├── classes | |
│ │ │ │ └── org | |
│ │ │ │ └── apache | |
│ │ │ │ └── activemq | |
│ │ │ │ └── web | |
│ │ │ │ ├── config | |
│ │ │ │ │ └── OsgiConfiguration.class | |
│ │ │ │ ├── controller | |
│ │ │ │ │ ├── CopyMessage.class | |
│ │ │ │ │ ├── CreateDestination.class | |
│ │ │ │ │ ├── CreateSubscriber.class | |
│ │ │ │ │ ├── DeleteDestination.class | |
│ │ │ │ │ ├── DeleteJob.class | |
│ │ │ │ │ ├── DeleteMessage.class | |
│ │ │ │ │ ├── DeleteSubscriber.class | |
│ │ │ │ │ ├── MoveMessage.class | |
│ │ │ │ │ ├── PurgeDestination.class | |
│ │ │ │ │ ├── RetryMessage.class | |
│ │ │ │ │ └── SendMessage.class | |
│ │ │ │ ├── filter | |
│ │ │ │ │ ├── ApplicationContextFilter$1.class | |
│ │ │ │ │ ├── ApplicationContextFilter$2.class | |
│ │ │ │ │ └── ApplicationContextFilter.class | |
│ │ │ │ ├── handler | |
│ │ │ │ │ └── BindingBeanNameUrlHandlerMapping.class | |
│ │ │ │ ├── WebConsoleStarter.class | |
│ │ │ │ └── WebConsoleStarter$OsgiUtil.class | |
│ │ │ ├── dispatcher-servlet.xml | |
│ │ │ ├── jspf | |
│ │ │ │ └── headertags.jspf | |
│ │ │ ├── tags | |
│ │ │ │ ├── form | |
│ │ │ │ │ ├── checkbox.tag | |
│ │ │ │ │ ├── escape.tag | |
│ │ │ │ │ ├── forEachMapEntry.tag | |
│ │ │ │ │ ├── option.tag | |
│ │ │ │ │ ├── short.tag | |
│ │ │ │ │ ├── text.tag | |
│ │ │ │ │ ├── tooltip.tag | |
│ │ │ │ │ └── uri.tag | |
│ │ │ │ └── jms | |
│ │ │ │ ├── forEachConnection.tag | |
│ │ │ │ ├── forEachMessage.tag | |
│ │ │ │ ├── formatTimestamp.tag | |
│ │ │ │ └── persistent.tag | |
│ │ │ ├── webconsole-default.xml | |
│ │ │ ├── webconsole-embedded.xml | |
│ │ │ ├── webconsole-invm.xml | |
│ │ │ ├── webconsole-jndi.xml | |
│ │ │ ├── webconsole-osgi.xml | |
│ │ │ ├── webconsole-properties.xml | |
│ │ │ ├── webconsole-query.xml | |
│ │ │ └── web.xml | |
│ │ └── xml | |
│ │ ├── queues.jsp | |
│ │ ├── subscribers.jsp | |
│ │ └── topics.jsp | |
│ ├── api | |
│ │ └── WEB-INF | |
│ │ ├── classes | |
│ │ │ └── jolokia-access.xml | |
│ │ └── web.xml | |
│ ├── favicon.ico | |
│ ├── images | |
│ │ ├── activemq-logo.png | |
│ │ ├── asf-logo.png | |
│ │ ├── big-bullet.png | |
│ │ ├── black-footer-bottom.png | |
│ │ ├── black-footer-left.png | |
│ │ ├── black-footer-right.png | |
│ │ ├── bottom-red-bar.png | |
│ │ ├── checker-bg.png | |
│ │ ├── content-left.png | |
│ │ ├── content-right.png | |
│ │ ├── feed_atom.png | |
│ │ ├── feed_rss.png | |
│ │ ├── left-box-bottom.png | |
│ │ ├── left-box-right.png | |
│ │ ├── left-box-top.png | |
│ │ ├── oval-arrow.png | |
│ │ ├── right-box-bottom.png | |
│ │ ├── right-box-left.png | |
│ │ ├── right-box-top.png | |
│ │ ├── small-bullet-gray.png | |
│ │ ├── small-bullet-red.png | |
│ │ ├── spacer.gif | |
│ │ ├── top-red-bar.png | |
│ │ ├── white-header-left.png | |
│ │ ├── white-header-right.png | |
│ │ └── white-header-top.png | |
│ ├── index.html | |
│ └── styles | |
│ ├── prettify.css | |
│ ├── site.css | |
│ ├── sorttable.css | |
│ └── type-settings.css | |
└── webapps-demo | |
└── demo | |
├── chat.css | |
├── chat.html | |
├── images | |
│ ├── activemq-logo.png | |
│ ├── asf-logo.png | |
│ ├── big-bullet.png | |
│ ├── black-footer-bottom.png | |
│ ├── black-footer-left.png | |
│ ├── black-footer-right.png | |
│ ├── bottom-red-bar.png | |
│ ├── checker-bg.png | |
│ ├── content-left.png | |
│ ├── content-right.png | |
│ ├── feed_atom.png | |
│ ├── feed_rss.png | |
│ ├── left-box-bottom.png | |
│ ├── left-box-right.png | |
│ ├── left-box-top.png | |
│ ├── oval-arrow.png | |
│ ├── right-box-bottom.png | |
│ ├── right-box-left.png | |
│ ├── right-box-top.png | |
│ ├── small-bullet-gray.png | |
│ ├── small-bullet-red.png | |
│ ├── spacer.gif | |
│ ├── top-red-bar.png | |
│ ├── white-header-left.png | |
│ ├── white-header-right.png | |
│ └── white-header-top.png | |
├── index.html | |
├── js | |
│ ├── amq_dojo_adapter.js | |
│ ├── amq_jquery_adapter.js | |
│ ├── amq.js | |
│ ├── amq_prototype_adapter.js | |
│ ├── chat.js | |
│ ├── common.js | |
│ ├── css.js | |
│ ├── dojo.js | |
│ ├── jquery-1.4.2.min.js | |
│ ├── mochi | |
│ │ ├── MochiKit.js | |
│ │ └── __package__.js | |
│ ├── plotkit | |
│ │ ├── Base.js | |
│ │ ├── Canvas.js | |
│ │ ├── dummy.svg | |
│ │ ├── iecanvas.htc | |
│ │ ├── Layout.js | |
│ │ ├── SVG.js | |
│ │ ├── SweetCanvas.js | |
│ │ └── SweetSVG.js | |
│ ├── prettify.js | |
│ ├── prototype.js | |
│ └── standardista-table-sorting.js | |
├── META-INF | |
│ ├── LICENSE | |
│ └── NOTICE | |
├── mqtt | |
│ ├── chat.css | |
│ ├── chat.js | |
│ ├── index.html | |
│ └── mqttws31.js | |
├── portfolio | |
│ ├── portfolio.html | |
│ └── portfolio.js | |
├── send.html | |
├── style.css | |
├── styles | |
│ ├── prettify.css | |
│ ├── site.css | |
│ ├── sorttable.css | |
│ └── type-settings.css | |
├── test | |
│ ├── amq_test.html | |
│ └── assets | |
│ ├── jsunittest.js | |
│ ├── README | |
│ └── unittest.css | |
├── WEB-INF | |
│ └── web.xml | |
└── websocket | |
├── chat.css | |
├── chat.js | |
├── index.html | |
└── stomp.js | |
197 directories, 560 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment