Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D18EE18269 for ; Tue, 8 Mar 2016 16:59:15 +0000 (UTC) Received: (qmail 77452 invoked by uid 500); 8 Mar 2016 16:59:15 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 77403 invoked by uid 500); 8 Mar 2016 16:59:15 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 77394 invoked by uid 99); 8 Mar 2016 16:59:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Mar 2016 16:59:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9EBF5DFBAD; Tue, 8 Mar 2016 16:59:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Date: Tue, 08 Mar 2016 16:59:15 -0000 Message-Id: <22c1d7e95e1046229c6697f2f06478c7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/6] camel git commit: CAMEL-9679: Support for Hessian serialization - add docs Repository: camel Updated Branches: refs/heads/master ef4cc80b8 -> 7a912ec1d CAMEL-9679: Support for Hessian serialization - add docs Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/37eb2947 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/37eb2947 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/37eb2947 Branch: refs/heads/master Commit: 37eb29472a77db079a58f12f136277c08793dbff Parents: 7d1986f Author: Jaroslaw Strzelecki Authored: Tue Mar 8 14:45:46 2016 +0100 Committer: Claus Ibsen Committed: Tue Mar 8 17:42:00 2016 +0100 ---------------------------------------------------------------------- .../camel-snakeyaml/src/main/docs/hessian.adoc | 42 ++++++++++++++++++++ 1 file changed, 42 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/37eb2947/components/camel-snakeyaml/src/main/docs/hessian.adoc ---------------------------------------------------------------------- diff --git a/components/camel-snakeyaml/src/main/docs/hessian.adoc b/components/camel-snakeyaml/src/main/docs/hessian.adoc new file mode 100644 index 0000000..72997b7 --- /dev/null +++ b/components/camel-snakeyaml/src/main/docs/hessian.adoc @@ -0,0 +1,42 @@ +[[hessian-HessianDataFormat]] +Hessian DataFormat +~~~~~~~~~~~~~~~~~~ + +Hessian is Data Format for marshalling and unmarshalling messages using Caucho's Hessian format. + +If you want to use Hessian Data Format from Maven, add the following dependency to your `pom.xml`: + +[source,xml] +------------------------------------------------------------ + + org.apache.camel + camel-hessian + x.x.x + + +------------------------------------------------------------ + + +[[hessian-UsingHessianDataFormat]] +Using the Hessian data format in Java DSL +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[source,java] +-------------------------------------------------------------------------------- + from("direct:in") + .marshal().hessian(); +-------------------------------------------------------------------------------- + +[[hessian-UsingHessianDataFormatXml]] +Using the Hessian data format in Spring DSL +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +[source,xml] +-------------------------------------------------------------------------------- + + + + + + +--------------------------------------------------------------------------------