jamesnetherton commented on a change in pull request #429:
URL: https://github.com/apache/camel-website/pull/429#discussion_r454959160



##########
File path: content/blog/2020/07/command-line-utility-with-camel-quarkus/index.md
##########
@@ -0,0 +1,226 @@
+---
+title: "Command line utility with Camel Quarkus"
+date: 2020-07-15
+authors: ["ppalaga"]
+categories: ["Howtos", "Camel Quarkus"]
+preview: How to write a command line utility with Camel Quarkus
+---
+
+[Camel](https://camel.apache.org/) and [Camel 
Quarkus](https://camel.apache.org/camel-quarkus/latest/index.html) are
+typically used to create integration applications that run as long living 
processes, a.k.a. daemons or services.
+In this blog post, we are going to explain a slightly different use case: 
using Camel Quarkus in programs that exit by
+themselves after performing some desired tasks.
+
+## Where can this be useful?
+
+The enterprise is full of scheduled batch processing. Say, some system exports 
some sort of reports daily at 4 a.m.
+Those need to be transformed (e.g. XML -> Excell) and transferred somewhere 
else (e.g. via mail, FTP or similar).

Review comment:
       ```suggestion
   Those need to be transformed (e.g. XML -> Excel) and transferred somewhere 
else (e.g. via mail, FTP or similar).
   ```

##########
File path: content/blog/2020/07/command-line-utility-with-camel-quarkus/index.md
##########
@@ -0,0 +1,226 @@
+---
+title: "Command line utility with Camel Quarkus"
+date: 2020-07-15
+authors: ["ppalaga"]
+categories: ["Howtos", "Camel Quarkus"]
+preview: How to write a command line utility with Camel Quarkus
+---
+
+[Camel](https://camel.apache.org/) and [Camel 
Quarkus](https://camel.apache.org/camel-quarkus/latest/index.html) are
+typically used to create integration applications that run as long living 
processes, a.k.a. daemons or services.
+In this blog post, we are going to explain a slightly different use case: 
using Camel Quarkus in programs that exit by
+themselves after performing some desired tasks.
+
+## Where can this be useful?
+
+The enterprise is full of scheduled batch processing. Say, some system exports 
some sort of reports daily at 4 a.m.
+Those need to be transformed (e.g. XML -> Excell) and transferred somewhere 
else (e.g. via mail, FTP or similar).
+
+Camel is a perfect match for doing the transformation a and the transfer. 
However, having a service running 24/7 for

Review comment:
       ```suggestion
   Camel is a perfect match for doing the transformation and the transfer. 
However, having a service running 24/7 for
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to