Return-Path: Delivered-To: apmail-activemq-camel-commits-archive@locus.apache.org Received: (qmail 10633 invoked from network); 30 Jun 2008 05:52:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Jun 2008 05:52:51 -0000 Received: (qmail 193 invoked by uid 500); 30 Jun 2008 05:52:53 -0000 Delivered-To: apmail-activemq-camel-commits-archive@activemq.apache.org Received: (qmail 160 invoked by uid 500); 30 Jun 2008 05:52:53 -0000 Mailing-List: contact camel-commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: camel-dev@activemq.apache.org Delivered-To: mailing list camel-commits@activemq.apache.org Received: (qmail 151 invoked by uid 99); 30 Jun 2008 05:52:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 29 Jun 2008 22:52:53 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jun 2008 05:52:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0B39723889C4; Sun, 29 Jun 2008 22:51:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r672713 - /activemq/camel/trunk/README.txt Date: Mon, 30 Jun 2008 05:51:58 -0000 To: camel-commits@activemq.apache.org From: davsclaus@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080630055159.0B39723889C4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: davsclaus Date: Sun Jun 29 22:51:58 2008 New Revision: 672713 URL: http://svn.apache.org/viewvc?rev=672713&view=rev Log: Replace the README text with what is Camel from the Apache Camel website Modified: activemq/camel/trunk/README.txt Modified: activemq/camel/trunk/README.txt URL: http://svn.apache.org/viewvc/activemq/camel/trunk/README.txt?rev=672713&r1=672712&r2=672713&view=diff ============================================================================== --- activemq/camel/trunk/README.txt (original) +++ activemq/camel/trunk/README.txt Sun Jun 29 22:51:58 2008 @@ -1,20 +1,29 @@ Welcome to Apache Camel =============================================================================== -Apache Camel is a powerful rule based routing and mediation engine which -provides a POJO based implementation of the Enterprise Integration Patterns -using an extremely powerful fluent API (or declarative Java Domain Specific -Language) to configure routing and mediation rules. The Domain Specific -Language means that Apache Camel can support type-safe smart completion of -routing rules in your IDE using regular Java code without huge amounts of -XML configuration files; though Xml Configuration inside Spring is also -supported. - -Apache Camel uses generics, annotations and URIs so that it can easily work -directly with any kind of Transport or messaging model such as HTTP, JMS, JBI, -SCA, MINA or CXF Bus API without mandating a normalized message API which can -often lead to leaky abstractions. Apache Camel is also a small library which -has minimal dependencies for easy embedding in any Java application. +Apache Camel is a powerful Spring based Integration Framework. + +Camel implements the Enterprise Integration Patterns allowing you to configure +routing and mediation rules in either a Java based Domain Specific Language +(or Fluent API) or via Spring based Xml Configuration files. Either approaches +mean you get smart completion of routing rules in your IDE whether in your +Java or XML editor. + +Apache Camel uses URIs so that it can easily work directly with any kind of +Transport or messaging model such as HTTP, ActiveMQ, JMS, JBI, SCA, MINA +or CXF Bus API together with working with pluggable Data Format options. +Apache Camel is a small library which has minimal dependencies for easy +embedding in any Java application. + +Apache Camel can be used as a routing and mediation engine for the +following projects: + + * Apache ActiveMQ which is the most popular and powerful open + source message broker + * Apache CXF which is a smart web services suite (JAX-WS) + * Apache MINA a networking framework + * Apache ServiceMix which is the most popular and powerful distributed + open source ESB and JBI container Getting Started