Author: davsclaus
Date: Sun Jun 1 21:10:38 2008
New Revision: 662313
URL: http://svn.apache.org/viewvc?rev=662313&view=rev
Log:
added to readme how to stop and use log4j for logging
Modified:
activemq/camel/trunk/examples/README.txt
activemq/camel/trunk/examples/camel-example-bam/README.txt
activemq/camel/trunk/examples/camel-example-cxf/README.txt
activemq/camel/trunk/examples/camel-example-etl/README.txt
activemq/camel/trunk/examples/camel-example-jms-file/README.txt
activemq/camel/trunk/examples/camel-example-osgi/README.txt
activemq/camel/trunk/examples/camel-example-spring-jms/README.txt
activemq/camel/trunk/examples/camel-example-spring-xquery/README.txt
activemq/camel/trunk/examples/camel-example-spring/README.txt
Modified: activemq/camel/trunk/examples/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/README.txt (original)
+++ activemq/camel/trunk/examples/README.txt Sun Jun 1 21:10:38 2008
@@ -24,6 +24,7 @@
Please help us make Apache Camel better - we appreciate any feedback you
may have.
+
Enjoy!
------------------------
Modified: activemq/camel/trunk/examples/camel-example-bam/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-bam/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-bam/README.txt (original)
+++ activemq/camel/trunk/examples/camel-example-bam/README.txt Sun Jun 1
21:10:38 2008
@@ -36,6 +36,15 @@
You can see the BAM activies defined in
src/main/java/org/apache/camel/example/bam/MyActivites.java
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
For the latest & greatest documentation on how to use this example please see
http://activemq.apache.org/camel/bam-example.html
Modified: activemq/camel/trunk/examples/camel-example-cxf/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-cxf/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-cxf/README.txt (original)
+++ activemq/camel/trunk/examples/camel-example-cxf/README.txt Sun Jun 1
21:10:38 2008
@@ -26,6 +26,15 @@
c. To Run the example using Ant, type
ant
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
For the latest & greatest documentation on how to use this example please see
http://activemq.apache.org/camel/cxf-example.html
Modified: activemq/camel/trunk/examples/camel-example-etl/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-etl/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-etl/README.txt (original)
+++ activemq/camel/trunk/examples/camel-example-etl/README.txt Sun Jun 1
21:10:38 2008
@@ -42,6 +42,15 @@
directory and the Spring XML configuration lives in
src/main/resources/META-INF/spring
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
If you hit any problems please let us know on the Camel Forums
http://activemq.apache.org/camel/discussion-forums.html
Modified: activemq/camel/trunk/examples/camel-example-jms-file/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-jms-file/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-jms-file/README.txt (original)
+++ activemq/camel/trunk/examples/camel-example-jms-file/README.txt Sun Jun 1
21:10:38 2008
@@ -28,6 +28,15 @@
c. To run the example using Ant, type
ant
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
If you hit an problems please let us know on the Camel Forums
http://activemq.apache.org/camel/discussion-forums.html
Modified: activemq/camel/trunk/examples/camel-example-osgi/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-osgi/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-osgi/README.txt (original)
+++ activemq/camel/trunk/examples/camel-example-osgi/README.txt Sun Jun 1
21:10:38 2008
@@ -10,6 +10,15 @@
To run the example using Ant type
ant
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
If you hit any problems please let us know on the Camel Forums
http://activemq.apache.org/camel/discussion-forums.html
Modified: activemq/camel/trunk/examples/camel-example-spring-jms/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-spring-jms/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-spring-jms/README.txt (original)
+++ activemq/camel/trunk/examples/camel-example-spring-jms/README.txt Sun Jun
1 21:10:38 2008
@@ -15,6 +15,15 @@
mvn exec:java -PCamelClient
mvn exec:java -PCamelClientRemoting
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
If you hit an problems please let us know on the Camel Forums
http://activemq.apache.org/camel/discussion-forums.html
Modified: activemq/camel/trunk/examples/camel-example-spring-xquery/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-spring-xquery/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-spring-xquery/README.txt
(original)
+++ activemq/camel/trunk/examples/camel-example-spring-xquery/README.txt Sun
Jun 1 21:10:38 2008
@@ -34,6 +34,15 @@
You can see the routing rules by looking at the the Spring XML configuration
at src/main/resources/META-INF/spring
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
For the latest & greatest documentation on how to use this example please see
http://activemq.apache.org/camel/spring-xquery-example.html
Modified: activemq/camel/trunk/examples/camel-example-spring/README.txt
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/examples/camel-example-spring/README.txt?rev=662313&r1=662312&r2=662313&view=diff
==============================================================================
--- activemq/camel/trunk/examples/camel-example-spring/README.txt (original)
+++ activemq/camel/trunk/examples/camel-example-spring/README.txt Sun Jun 1
21:10:38 2008
@@ -31,6 +31,15 @@
src/main/java directory and the Spring XML configuration lives in
src/main/resources/META-INF/spring
+To stop the example hit ctrl + c
+
+To use log4j as the logging framework add this to the pom.xml:
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </dependency>
+and log4j.properties is located in src/main/resources
+
For the latest & greatest documentation on how to use this example please see
http://activemq.apache.org/camel/spring-example.html