Index: camel-example-spring-xquery/src/main/resources/log4j.properties =================================================================== --- camel-example-spring-xquery/src/main/resources/log4j.properties (Revision 644162) +++ camel-example-spring-xquery/src/main/resources/log4j.properties (Arbeitskopie) @@ -16,7 +16,7 @@ ## ------------------------------------------------------------------------ # -# The logging properties used for eclipse testing, We want to see debug output on the console. +# The logging properties used for eclipse testing, We want to see INFO output on the console. # log4j.rootLogger=INFO, out Index: camel-example-spring-xquery/pom.xml =================================================================== --- camel-example-spring-xquery/pom.xml (Revision 644162) +++ camel-example-spring-xquery/pom.xml (Arbeitskopie) @@ -90,7 +90,7 @@ - + org.apache.camel camel-maven-plugin @@ -101,7 +101,7 @@ - + org.apache.camel camel-maven-plugin Index: camel-example-spring-xquery/README.txt =================================================================== --- camel-example-spring-xquery/README.txt (Revision 644162) +++ camel-example-spring-xquery/README.txt (Arbeitskopie) @@ -18,7 +18,7 @@ For the latest & greatest documentation on how to use this example please see http://activemq.apache.org/camel/spring-xquery-example.html -If you hit any problems please talk to us on the Camel Forums +If you hit any problems please let us know on the Camel Forums http://activemq.apache.org/camel/discussion-forums.html Please help us make Apache Camel better - we appreciate any feedback you may have. Index: camel-example-osgi/pom.xml =================================================================== --- camel-example-osgi/pom.xml (Revision 644162) +++ camel-example-osgi/pom.xml (Arbeitskopie) @@ -54,7 +54,7 @@ - + org.apache.camel camel-maven-plugin Index: camel-example-spring/src/test/java/org/apache/camel/example/spring/IntegrationTest.java =================================================================== --- camel-example-spring/src/test/java/org/apache/camel/example/spring/IntegrationTest.java (Revision 644162) +++ camel-example-spring/src/test/java/org/apache/camel/example/spring/IntegrationTest.java (Arbeitskopie) @@ -25,7 +25,7 @@ public class IntegrationTest extends TestCase { public void testCamelRulesDeployCorrectlyInSpring() throws Exception { - // lets boot up the Spring application context for 2 seconds to check it works OK + // let's boot up the Spring application context for 2 seconds to check that it works OK Main.main("-duration", "2s", "-o", "target/site/cameldoc"); } } Index: camel-example-spring/src/main/java/org/apache/camel/example/spring/MyRouteBuilder.java =================================================================== --- camel-example-spring/src/main/java/org/apache/camel/example/spring/MyRouteBuilder.java (Revision 644162) +++ camel-example-spring/src/main/java/org/apache/camel/example/spring/MyRouteBuilder.java (Arbeitskopie) @@ -35,7 +35,7 @@ } public void configure() { - // lets populate the message queue with some messages + // populate the message queue with some messages from("file:src/data?noop=true"). to("jms:test.MyQueue"); Index: camel-example-spring/src/main/resources/log4j.properties =================================================================== --- camel-example-spring/src/main/resources/log4j.properties (Revision 644162) +++ camel-example-spring/src/main/resources/log4j.properties (Arbeitskopie) @@ -16,7 +16,7 @@ ## ------------------------------------------------------------------------ # -# The logging properties used for eclipse testing, We want to see debug output on the console. +# The logging properties used for eclipse testing, We want to see INFO output on the console. # log4j.rootLogger=INFO, out Index: camel-example-spring/pom.xml =================================================================== --- camel-example-spring/pom.xml (Revision 644162) +++ camel-example-spring/pom.xml (Arbeitskopie) @@ -68,7 +68,7 @@ - + org.apache.camel camel-maven-plugin @@ -79,7 +79,7 @@ - + org.apache.camel camel-maven-plugin Index: camel-example-spring/README.txt =================================================================== --- camel-example-spring/README.txt (Revision 644162) +++ camel-example-spring/README.txt (Arbeitskopie) @@ -10,12 +10,12 @@ mvn camel:run You can see the routing rules by looking at the java code in the src/main/java directory -and the Spring XML configuration lives in src/main/resources/META-INF/spring +and the Spring XML configuration file in src/main/resources/META-INF/spring For the latest & greatest documentation on how to use this example please see http://activemq.apache.org/camel/spring-example.html -If you hit any problems please talk to us on the Camel Forums +If you hit any problems please let us know on the Camel Forums http://activemq.apache.org/camel/discussion-forums.html Please help us make Apache Camel better - we appreciate any feedback you may have. Index: camel-example-jms-file/src/main/java/org/apache/camel/example/jmstofile/CamelJmsToFileExample.java =================================================================== --- camel-example-jms-file/src/main/java/org/apache/camel/example/jmstofile/CamelJmsToFileExample.java (Revision 644162) +++ camel-example-jms-file/src/main/java/org/apache/camel/example/jmstofile/CamelJmsToFileExample.java (Arbeitskopie) @@ -28,9 +28,9 @@ import org.apache.camel.impl.DefaultCamelContext; /** - * An example class for demonstrating some of the basics behind camel This - * example will send some text messages on to a JMS Queue, consume them and - * persist them to disk + * An example class for demonstrating some of the basics behind Camel. This + * example sends some text messages on to a JMS Queue, consumes them and + * persists them to disk * * @version $Revision$ */ @@ -46,7 +46,7 @@ // Set up the ActiveMQ JMS Components // START SNIPPET: e2 ConnectionFactory connectionFactory = new ActiveMQConnectionFactory("vm://localhost?broker.persistent=false"); - // note we can explicity name the component + // Note we can explicity name the component context.addComponent("test-jms", JmsComponent.jmsComponentAutoAcknowledge(connectionFactory)); // END SNIPPET: e2 // Add some configuration by hand ... @@ -71,16 +71,15 @@ // END SNIPPET: e4 // Now everything is set up - lets start the context context.start(); - // now send some test text to a component - for this case a JMS Queue + // Now send some test text to a component - for this case a JMS Queue // The text get converted to JMS messages - and sent to the Queue // test.queue // The file component is listening for messages from the Queue // test.queue, consumes // them and stores them to disk. The content of each file will be the - // test test we sent here. - // The listener on the file component gets notfied when new files are - // found ... - // that's it! + // test we sent here. + // The listener on the file component gets notified when new files are + // found ... that's it! // START SNIPPET: e5 for (int i = 0; i < 10; i++) { template.sendBody("test-jms:queue:test.queue", "Test Message: " + i); Index: camel-example-jms-file/pom.xml =================================================================== --- camel-example-jms-file/pom.xml (Revision 644162) +++ camel-example-jms-file/pom.xml (Arbeitskopie) @@ -30,7 +30,7 @@ camel-example-jms-file Camel :: Example :: JMS-File - An example that persists messages from JMS as files + An example that persists messages from JMS to files @@ -59,7 +59,7 @@ - + org.codehaus.mojo exec-maven-plugin Index: camel-example-jms-file/README.txt =================================================================== --- camel-example-jms-file/README.txt (Revision 644162) +++ camel-example-jms-file/README.txt (Arbeitskopie) @@ -10,7 +10,7 @@ The example should run if you type mvn exec:java -If you hit any problems please talk to us on the Camel Forums +If you hit any problems please let us know on the Camel Forums http://activemq.apache.org/camel/discussion-forums.html Please help us make Apache Camel better - we appreciate any feedback you may have.