Return-Path: Delivered-To: apmail-incubator-cxf-commits-archive@locus.apache.org Received: (qmail 86906 invoked from network); 30 Jan 2007 09:53:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Jan 2007 09:53:56 -0000 Received: (qmail 2902 invoked by uid 500); 30 Jan 2007 09:54:02 -0000 Delivered-To: apmail-incubator-cxf-commits-archive@incubator.apache.org Received: (qmail 2835 invoked by uid 500); 30 Jan 2007 09:54:02 -0000 Mailing-List: contact cxf-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-commits@incubator.apache.org Received: (qmail 2823 invoked by uid 99); 30 Jan 2007 09:54:02 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Jan 2007 01:54:01 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Jan 2007 01:53:55 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 09D741A981A; Tue, 30 Jan 2007 01:53:34 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r501358 - in /incubator/cxf/trunk/distribution/src/main/release/samples: jms_pubsub/README.txt jms_pubsub/build.xml jms_queue/README.txt jms_queue/build.xml Date: Tue, 30 Jan 2007 09:53:34 -0000 To: cxf-commits@incubator.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070130095335.09D741A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ningjiang Date: Tue Jan 30 01:53:32 2007 New Revision: 501358 URL: http://svn.apache.org/viewvc?view=rev&rev=501358 Log: [CXF-395] Applied the Jonathan's patch. Modified: incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/README.txt incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/build.xml incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/build.xml Modified: incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/README.txt URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/README.txt?view=diff&rev=501358&r1=501357&r2=501358 ============================================================================== --- incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/README.txt (original) +++ incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/README.txt Tue Jan 30 01:53:32 2007 @@ -20,17 +20,25 @@ javac, and java to build and run the demos, you must set the environment. -This demo requires ActiveMQ 4.0.X. Before you run this -demo, please make sure you had installed the ActiveMQ 4.0.X and +This demo requires ActiveMQ 4.1.X. Before you run this +demo, please make sure you had installed the ActiveMQ 4.1.X and set ACTIVEMQ_HOME and ACTIVEMQ_VERSION environment variables. +Also, the ACTIVEMQ_VERSION environment variable should include the +'-incubator' suffix. For example, -Befor you run this demo, start up the JMS message broker. +For Unix: +export ACTIVEMQ_VERSION=4.1.0-incubator + +For Windows: +set ACTIVEMQ_VERSION=4.1.0-incubator + -From ActiveMQ 4.0.X insallation launch ActiveMQ JMS Broker in seperate window +Before you run this demo, start up the JMS message broker. + +From ActiveMQ 4.1.X insallation launch ActiveMQ JMS Broker in seperate window or in background using the commands: For Unix: - cd /bin activemq @@ -87,13 +95,13 @@ For UNIX: export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-incubator.jar:./build/classes: -$ACTIVEMQ_HOME/incubator-activemq-$ACTIVEMQ_VERSION.jar +$ACTIVEMQ_HOME/apache-activemq-$ACTIVEMQ_VERSION.jar javac -d build/classes src/demo/jms_greeter/client/*.java javac -d build/classes src/demo/jms_greeter/server/*.java For Windows: set classpath=%classpath%;%CXF_HOME%\lib\cxf-incubator.jar;.\build\classes; -%ACTIVEMQ_HOME%\incubator-activemq-%ACTIVEMQ_VERSION%.jar +%ACTIVEMQ_HOME%\apache-activemq-%ACTIVEMQ_VERSION%.jar javac -d build\classes src\demo\jms_greeter\client\*.java javac -d build\classes src\demo\jms_greeter\server\*.java Modified: incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/build.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/build.xml?view=diff&rev=501358&r1=501357&r2=501358 ============================================================================== --- incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/build.xml (original) +++ incubator/cxf/trunk/distribution/src/main/release/samples/jms_pubsub/build.xml Tue Jan 30 01:53:32 2007 @@ -31,7 +31,7 @@ - + Modified: incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt?view=diff&rev=501358&r1=501357&r2=501358 ============================================================================== --- incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt (original) +++ incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/README.txt Tue Jan 30 01:53:32 2007 @@ -20,13 +20,21 @@ javac, and java to build and run the demos, you must set the environment. -This demo requires ActiveMQ 4.X. Before you run this demo, -please make sure you have installed the ActiveMQ 4.X and +This demo requires ActiveMQ 4.1.X. Before you run this +demo, please make sure you had installed the ActiveMQ 4.1.X and set ACTIVEMQ_HOME and ACTIVEMQ_VERSION environment variables. +Also, the ACTIVEMQ_VERSION environment variable should include the +'-incubator' suffix. For example, + +For Unix: +export ACTIVEMQ_VERSION=4.1.0-incubator + +For Windows: +set ACTIVEMQ_VERSION=4.1.0-incubator Before you run this demo, please start up the JMS message broker first. -From your ActiveMQ 4.X installation launch ActiveMQ JMS broker in a +From your ActiveMQ 4.1.X installation launch ActiveMQ JMS broker in a separate window or in the background using the commandline: For Unix: @@ -86,13 +94,13 @@ For UNIX: export CLASSPATH=$CLASSPATH:$CXF_HOME/lib/cxf-incubator.jar:./build/classes: -$ACTIVEMQ_HOME/incubator-activemq-$ACTIVEMQ_VERSION.jar +$ACTIVEMQ_HOME/apache-activemq-$ACTIVEMQ_VERSION.jar javac -d build/classes src/demo/jms_greeter/client/*.java javac -d build/classes src/demo/jms_greeter/server/*.java For Windows: set classpath=%classpath%;%CXF_HOME%\lib\cxf-incubator.jar;.\build\classes; -%ACTIVEMQ_HOME%\incubator-activemq-%ACTIVEMQ_VERSION%.jar +%ACTIVEMQ_HOME%\apache-activemq-%ACTIVEMQ_VERSION%.jar javac -d build\classes src\demo\jms_greeter\client\*.java javac -d build\classes src\demo\jms_greeter\server\*.java Modified: incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/build.xml URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/build.xml?view=diff&rev=501358&r1=501357&r2=501358 ============================================================================== --- incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/build.xml (original) +++ incubator/cxf/trunk/distribution/src/main/release/samples/jms_queue/build.xml Tue Jan 30 01:53:32 2007 @@ -30,7 +30,7 @@ - +