You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2016/05/09 08:20:41 UTC

[1/3] camel git commit: Added camel-mina docs to Gitbook

Repository: camel
Updated Branches:
  refs/heads/master 648207bc0 -> fc5a47729


Added camel-mina docs to Gitbook


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/91e97b72
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/91e97b72
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/91e97b72

Branch: refs/heads/master
Commit: 91e97b728c703635f75b6bba8480dc5397f0c700
Parents: 648207b
Author: Andrea Cosentino <an...@gmail.com>
Authored: Mon May 9 09:56:36 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Mon May 9 09:56:36 2016 +0200

----------------------------------------------------------------------
 components/camel-mina/src/main/docs/mina.adoc | 336 +++++++++++++++++++++
 docs/user-manual/en/SUMMARY.md                |   1 +
 2 files changed, 337 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/91e97b72/components/camel-mina/src/main/docs/mina.adoc
----------------------------------------------------------------------
diff --git a/components/camel-mina/src/main/docs/mina.adoc b/components/camel-mina/src/main/docs/mina.adoc
new file mode 100644
index 0000000..220b91f
--- /dev/null
+++ b/components/camel-mina/src/main/docs/mina.adoc
@@ -0,0 +1,336 @@
+[[MINA-MINAComponent]]
+MINA Component
+~~~~~~~~~~~~~~
+
+*Deprecated*
+
+WARNING: This component is deprecated as the Apache Mina 1.x project is EOL.
+Instead use link:mina2.html[MINA2] or link:netty.html[Netty] instead.
+
+The *mina:* component is a transport for working with
+http://mina.apache.org/[Apache MINA]
+
+Maven users will need to add the following dependency to their `pom.xml`
+for this component:
+
+[source,xml]
+------------------------------------------------------------
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-mina</artifactId>
+    <version>x.x.x</version>
+    <!-- use the same version as your Camel core version -->
+</dependency>
+------------------------------------------------------------
+
+[[MINA-URIformat]]
+URI format
+^^^^^^^^^^
+
+[source,java]
+------------------------------------
+mina:tcp://hostname[:port][?options]
+mina:udp://hostname[:port][?options]
+mina:vm://hostname[:port][?options]
+------------------------------------
+
+You can specify a codec in the link:registry.html[Registry] using the
+*codec* option. If you are using TCP and no codec is specified then the
+`textline` flag is used to determine if text line based codec or object
+serialization should be used instead. By default the object
+serialization is used.
+
+For UDP if no codec is specified the default uses a basic `ByteBuffer`
+based codec.
+
+The VM protocol is used as a direct forwarding mechanism in the same
+JVM. See the
+http://mina.apache.org/report/1.1/apidocs/org/apache/mina/transport/vmpipe/package-summary.html[MINA
+VM-Pipe API documentation] for details.
+
+A Mina producer has a default timeout value of 30 seconds, while it
+waits for a response from the remote server.
+
+In normal use, `camel-mina` only supports marshalling the body
+content\u2014message headers and exchange properties are not sent. +
+ However, the option, *transferExchange*, does allow you to transfer the
+exchange itself over the wire. See options below.
+
+You can append query options to the URI in the following format,
+`?option=value&option=value&...`
+
+[[MINA-Options]]
+Options
+^^^^^^^
+
+
+// component options: START
+The Mina component supports 1 options which are listed below.
+
+
+
+[width="100%",cols="2s,1m,8",options="header"]
+|=======================================================================
+| Name | Java Type | Description
+| configuration | MinaConfiguration | To use the shared mina configuration.
+|=======================================================================
+// component options: END
+
+
+
+// endpoint options: START
+The Mina component supports 24 endpoint options which are listed below:
+
+[width="100%",cols="2s,1,1m,1m,5",options="header"]
+|=======================================================================
+| Name | Group | Default | Java Type | Description
+| protocol | common |  | String | *Required* Protocol to use
+| host | common |  | String | *Required* Hostname to use. Use localhost or 0.0.0.0 for local server as consumer. For producer use the hostname or ip address of the remote server.
+| port | common |  | int | *Required* Port number
+| allowDefaultCodec | common | true | boolean | The mina component installs a default codec if both codec is null and textline is false. Setting allowDefaultCodec to false prevents the mina component from installing a default codec as the first element in the filter chain. This is useful in scenarios where another filter must be the first in the filter chain like the SSL filter.
+| codec | common |  | ProtocolCodecFactory | To use a custom minda codec implementation.
+| decoderMaxLineLength | common | 1024 | int | To set the textline protocol decoder max line length. By default the default value of Mina itself is used which are 1024.
+| disconnect | common | false | boolean | Whether or not to disconnect(close) from Mina session right after use. Can be used for both consumer and producer.
+| disconnectOnNoReply | common | true | boolean | If sync is enabled then this option dictates MinaConsumer if it should disconnect where there is no reply to send back.
+| encoderMaxLineLength | common | -1 | int | To set the textline protocol encoder max line length. By default the default value of Mina itself is used which are Integer.MAX_VALUE.
+| encoding | common |  | String | You can configure the encoding (a charset name) to use for the TCP textline codec and the UDP protocol. If not provided Camel will use the JVM default Charset
+| filters | common |  | List | You can set a list of Mina IoFilters to use.
+| lazySessionCreation | common | true | boolean | Sessions can be lazily created to avoid exceptions if the remote server is not up and running when the Camel producer is started.
+| minaLogger | common | false | boolean | You can enable the Apache MINA logging filter. Apache MINA uses slf4j logging at INFO level to log all input and output.
+| noReplyLogLevel | common | WARN | LoggingLevel | If sync is enabled this option dictates MinaConsumer which logging level to use when logging a there is no reply to send back.
+| sync | common | true | boolean | Setting to set endpoint as one-way or request-response.
+| textline | common | false | boolean | Only used for TCP. If no codec is specified you can use this flag to indicate a text line based codec; if not specified or the value is false then Object Serialization is assumed over TCP.
+| textlineDelimiter | common |  | TextLineDelimiter | Only used for TCP and if textline=true. Sets the text line delimiter to use. If none provided Camel will use DEFAULT. This delimiter is used to mark the end of text.
+| transferExchange | common | false | boolean | Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body Out body fault body In headers Out headers fault headers exchange properties exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level.
+| bridgeErrorHandler | consumer | false | boolean | Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN/ERROR level and ignored.
+| clientMode | consumer | false | boolean | If the clientMode is true mina consumer will connect the address as a TCP client.
+| exceptionHandler | consumer (advanced) |  | ExceptionHandler | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this options is not in use. By default the consumer will deal with exceptions that will be logged at WARN/ERROR level and ignored.
+| timeout | producer | 30000 | long | You can configure the timeout that specifies how long to wait for a response from a remote server. The timeout unit is in milliseconds so 60000 is 60 seconds.
+| exchangePattern | advanced | InOnly | ExchangePattern | Sets the default exchange pattern when creating an exchange
+| synchronous | advanced | false | boolean | Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported).
+|=======================================================================
+// endpoint options: END
+
+
+[[MINA-Usingacustomcodec]]
+Using a custom codec
+^^^^^^^^^^^^^^^^^^^^
+
+See the http://mina.apache.org/tutorial-on-protocolcodecfilter.html[Mina
+documentation] how to write your own codec. To use your custom codec
+with `camel-mina`, you should register your codec in the
+link:registry.html[Registry]; for example, by creating a bean in the
+Spring XML file. Then use the `codec` option to specify the bean ID of
+your codec. See link:hl7.html[HL7] that has a custom codec.
+
+[[MINA-Samplewithsync=false]]
+Sample with sync=false
+^^^^^^^^^^^^^^^^^^^^^^
+
+In this sample, Camel exposes a service that listens for TCP connections
+on port 6200. We use the *textline* codec. In our route, we create a
+Mina consumer endpoint that listens on port 6200:
+
+As the sample is part of a unit test, we test it by sending some data to
+it on port 6200.
+
+[[MINA-Samplewithsync=true]]
+Sample with sync=true
+^^^^^^^^^^^^^^^^^^^^^
+
+In the next sample, we have a more common use case where we expose a TCP
+service on port 6201 also use the textline codec. However, this time we
+want to return a response, so we set the `sync` option to `true` on the
+consumer.
+
+Then we test the sample by sending some data and retrieving the response
+using the `template.requestBody()` method. As we know the response is a
+`String`, we cast it to `String` and can assert that the response is, in
+fact, something we have dynamically set in our processor code logic.
+
+[[MINA-SamplewithSpringDSL]]
+Sample with Spring DSL
+^^^^^^^^^^^^^^^^^^^^^^
+
+Spring DSL can, of course, also be used for link:mina.html[MINA]. In the
+sample below we expose a TCP server on port 5555:
+
+[source,xml]
+----------------------------------------------------------
+   <route>
+     <from uri="mina:tcp://localhost:5555?textline=true"/>
+     <to uri="bean:myTCPOrderHandler"/>
+  </route>
+----------------------------------------------------------
+
+In the route above, we expose a TCP server on port 5555 using the
+textline codec. We let the Spring bean with ID, `myTCPOrderHandler`,
+handle the request and return a reply. For instance, the handler bean
+could be implemented as follows:
+
+[source,java]
+-----------------------------------------------
+    public String handleOrder(String payload) {
+        ...
+        return "Order: OK"
+   }
+-----------------------------------------------
+
+[[MINA-ConfiguringMinaendpointsusingSpringbeanstyle]]
+Configuring Mina endpoints using Spring bean style
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Configuration of Mina endpoints is possible using regular Spring bean
+style configuration in the Spring DSL.
+
+However, in the underlying Apache Mina toolkit, it is relatively
+difficult to set up the acceptor and the connector, because you can
+_not_ use simple setters. To resolve this difficulty, we leverage the
+`MinaComponent` as a Spring factory bean to configure this for us. If
+you really need to configure this yourself, there are setters on the
+`MinaEndpoint` to set these when needed.
+
+The sample below shows the factory approach:
+
+And then we can refer to our endpoint directly in the route, as follows:
+
+[[MINA-ClosingSessionWhenComplete]]
+Closing Session When Complete
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+When acting as a server you sometimes want to close the session when,
+for example, a client conversion is finished. To instruct Camel to close
+the session, you should add a header with the key
+`CamelMinaCloseSessionWhenComplete` set to a boolean `true` value.
+
+For instance, the example below will close the session after it has
+written the `bye` message back to the client:
+
+[source,java]
+--------------------------------------------------------------------------------------------------
+        from("mina:tcp://localhost:8080?sync=true&textline=true").process(new Processor() {
+            public void process(Exchange exchange) throws Exception {
+                String body = exchange.getIn().getBody(String.class);
+                exchange.getOut().setBody("Bye " + body);
+                exchange.getOut().setHeader(MinaConstants.MINA_CLOSE_SESSION_WHEN_COMPLETE, true);
+            }
+        });
+--------------------------------------------------------------------------------------------------
+
+[[MINA-GettheIoSessionformessage]]
+Get the IoSession for message
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+*Available since Camel 2.1* +
+ You can get the IoSession from the message header with this key
+MinaEndpoint.HEADER_MINA_IOSESSION, and also get the local host address
+with the key MinaEndpoint.HEADER_LOCAL_ADDRESS and remote host address
+with the key MinaEndpoint.HEADER_REMOTE_ADDRESS.
+
+[[MINA-ConfiguringMinafilters]]
+Configuring Mina filters
+^^^^^^^^^^^^^^^^^^^^^^^^
+
+Filters permit you to use some Mina Filters, such as `SslFilter`. You
+can also implement some customized filters. Please note that `codec` and
+`logger` are also implemented as Mina filters of type, `IoFilter`. Any
+filters you may define are appended to the end of the filter chain; that
+is, after `codec` and `logger`.
+
+TIP: If using the `SslFilter` you need to add the `mina-filter-ssl` JAR to
+the classpath.
+
+For instance, the example below will send a keep-alive message after 10
+seconds of inactivity:
+
+[source,java]
+------------------------------------------------------------------------
+public class KeepAliveFilter extends IoFilterAdapter {
+    @Override
+    public void sessionCreated(NextFilter nextFilter, IoSession session)
+            throws Exception {
+        session.setIdleTime(IdleStatus.BOTH_IDLE, 10);
+
+        nextFilter.sessionCreated(session);
+    }
+
+    @Override
+    public void sessionIdle(NextFilter nextFilter, IoSession session,
+            IdleStatus status) throws Exception {
+        session.write("NOOP"); // NOOP is a FTP command for keep alive
+        nextFilter.sessionIdle(session, status);
+    }
+}
+------------------------------------------------------------------------
+
+As Camel Mina may use a request-reply scheme, the endpoint as a client
+would like to drop some message, such as greeting when the connection is
+established. For example, when you connect to an FTP server, you will
+get a `220` message with a greeting (`220 Welcome to Pure-FTPd`). If you
+don't drop the message, your request-reply scheme will be broken.
+
+[source,java]
+--------------------------------------------------------------------------------------------------
+public class DropGreetingFilter extends IoFilterAdapter {
+
+    @Override
+    public void messageReceived(NextFilter nextFilter, IoSession session,
+            Object message) throws Exception {
+        if (message instanceof String) {
+            String ftpMessage = (String) message;
+            // "220" is given as greeting. "200 Zzz" is given as a response to "NOOP" (keep alive)
+            if (ftpMessage.startsWith("220") || or ftpMessage.startsWith("200 Zzz")) {
+                // Dropping greeting
+                return;
+            }
+        }
+        nextFilter.messageReceived(session, message);
+    }
+}
+--------------------------------------------------------------------------------------------------
+
+Then, you can configure your endpoint using Spring DSL:
+
+[source,xml]
+----------------------------------------------------------------------------------
+<bean id="myMinaFactory" class="org.apache.camel.component.mina.MinaComponent">
+    <constructor-arg index="0" ref="camelContext" />
+</bean>
+
+<bean id="myMinaEndpoint"
+      factory-bean="myMinaFactory"
+      factory-method="createEndpoint">
+    <constructor-arg index="0" ref="myMinaConfig"/>
+</bean>
+
+<bean id="myMinaConfig" class="org.apache.camel.component.mina.MinaConfiguration">
+    <property name="protocol" value="tcp" />
+    <property name="host" value="localhost" />
+    <property name="port" value="2121" />
+    <property name="sync" value="true" />
+    <property name="minaLogger" value="true" />
+    <property name="filters" ref="listFilters"/>
+</bean>
+
+<bean id="listFilters" class="java.util.ArrayList" >
+    <constructor-arg>
+        <list value-type="org.apache.mina.common.IoFilter">
+            <bean class="com.example.KeepAliveFilter"/>
+            <bean class="com.example.DropGreetingFilter"/>
+        </list>
+    </constructor-arg>
+</bean>
+----------------------------------------------------------------------------------
+
+[[MINA-SeeAlso]]
+See Also
+^^^^^^^^
+
+* link:configuring-camel.html[Configuring Camel]
+* link:component.html[Component]
+* link:endpoint.html[Endpoint]
+* link:getting-started.html[Getting Started]
+
+* link:mina2.html[MINA2]
+* link:netty.html[Netty]
+

http://git-wip-us.apache.org/repos/asf/camel/blob/91e97b72/docs/user-manual/en/SUMMARY.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md
index 0559c0b..0e2ed92 100644
--- a/docs/user-manual/en/SUMMARY.md
+++ b/docs/user-manual/en/SUMMARY.md
@@ -192,6 +192,7 @@
         * [SMTP](smtp.adoc)
         * [SMTPs](smtps.adoc)
     * [Metrics](metrics.adoc)
+    * [Mina](mina.adoc)
     * [Mock](mock.adoc)
     * [NATS](nats.adoc)
     * [Properties](properties.adoc)


[2/3] camel git commit: Added camel-mina2 docs to Gitbook

Posted by ac...@apache.org.
Added camel-mina2 docs to Gitbook


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c0d59a8b
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c0d59a8b
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c0d59a8b

Branch: refs/heads/master
Commit: c0d59a8b8ff97c7c34cadaa488900bb309000793
Parents: 91e97b7
Author: Andrea Cosentino <an...@gmail.com>
Authored: Mon May 9 10:08:17 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Mon May 9 10:08:17 2016 +0200

----------------------------------------------------------------------
 components/camel-mina/src/main/docs/mina.adoc   |   4 +-
 components/camel-mina2/src/main/docs/mina2.adoc | 268 +++++++++++++++++++
 docs/user-manual/en/SUMMARY.md                  |   1 +
 3 files changed, 271 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/c0d59a8b/components/camel-mina/src/main/docs/mina.adoc
----------------------------------------------------------------------
diff --git a/components/camel-mina/src/main/docs/mina.adoc b/components/camel-mina/src/main/docs/mina.adoc
index 220b91f..c2d2b33 100644
--- a/components/camel-mina/src/main/docs/mina.adoc
+++ b/components/camel-mina/src/main/docs/mina.adoc
@@ -221,8 +221,8 @@ written the `bye` message back to the client:
 Get the IoSession for message
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-*Available since Camel 2.1* +
- You can get the IoSession from the message header with this key
+*Available since Camel 2.1* 
+You can get the IoSession from the message header with this key
 MinaEndpoint.HEADER_MINA_IOSESSION, and also get the local host address
 with the key MinaEndpoint.HEADER_LOCAL_ADDRESS and remote host address
 with the key MinaEndpoint.HEADER_REMOTE_ADDRESS.

http://git-wip-us.apache.org/repos/asf/camel/blob/c0d59a8b/components/camel-mina2/src/main/docs/mina2.adoc
----------------------------------------------------------------------
diff --git a/components/camel-mina2/src/main/docs/mina2.adoc b/components/camel-mina2/src/main/docs/mina2.adoc
new file mode 100644
index 0000000..d6c2485
--- /dev/null
+++ b/components/camel-mina2/src/main/docs/mina2.adoc
@@ -0,0 +1,268 @@
+[[MINA2-MINA2Component]]
+MINA 2 Component
+~~~~~~~~~~~~~~~~
+
+*Available as of Camel 2.10*
+
+The *mina2:* component is a transport for working with
+http://mina.apache.org/[Apache MINA 2.x]
+
+TIP: Favor using link:netty.html[Netty] as Netty is a much more active
+maintained and popular project than Apache Mina currently is
+
+INFO: Be careful with sync=false on consumer endpoints. Since camel-mina2 all
+consumer exchanges are InOut. This is different to camel-mina.
+
+Maven users will need to add the following dependency to their `pom.xml`
+for this component:
+
+[source,xml]
+------------------------------------------------------------
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-mina2</artifactId>
+    <version>x.x.x</version>
+    <!-- use the same version as your Camel core version -->
+</dependency>
+------------------------------------------------------------
+
+[[MINA2-URIformat]]
+URI format
+^^^^^^^^^^
+
+[source,java]
+-------------------------------------
+mina2:tcp://hostname[:port][?options]
+mina2:udp://hostname[:port][?options]
+mina2:vm://hostname[:port][?options]
+-------------------------------------
+
+You can specify a codec in the link:registry.html[Registry] using the
+*codec* option. If you are using TCP and no codec is specified then the
+`textline` flag is used to determine if text line based codec or object
+serialization should be used instead. By default the object
+serialization is used.
+
+For UDP if no codec is specified the default uses a basic `ByteBuffer`
+based codec.
+
+The VM protocol is used as a direct forwarding mechanism in the same
+JVM.
+
+A Mina producer has a default timeout value of 30 seconds, while it
+waits for a response from the remote server.
+
+In normal use, `camel-mina` only supports marshalling the body
+content\u2014message headers and exchange properties are not sent. +
+ However, the option, *transferExchange*, does allow you to transfer the
+exchange itself over the wire. See options below.
+
+You can append query options to the URI in the following format,
+`?option=value&option=value&...`
+
+[[MINA2-Options]]
+Options
+^^^^^^^
+
+
+// component options: START
+The Mina2 component supports 1 options which are listed below.
+
+
+
+[width="100%",cols="2s,1m,8",options="header"]
+|=======================================================================
+| Name | Java Type | Description
+| configuration | Mina2Configuration | To use the shared mina configuration.
+|=======================================================================
+// component options: END
+
+
+
+// endpoint options: START
+The Mina2 component supports 29 endpoint options which are listed below:
+
+[width="100%",cols="2s,1,1m,1m,5",options="header"]
+|=======================================================================
+| Name | Group | Default | Java Type | Description
+| protocol | common |  | String | *Required* Protocol to use
+| host | common |  | String | *Required* Hostname to use. Use localhost or 0.0.0.0 for local server as consumer. For producer use the hostname or ip address of the remote server.
+| port | common |  | int | *Required* Port number
+| allowDefaultCodec | common | true | boolean | The mina component installs a default codec if both codec is null and textline is false. Setting allowDefaultCodec to false prevents the mina component from installing a default codec as the first element in the filter chain. This is useful in scenarios where another filter must be the first in the filter chain like the SSL filter.
+| autoStartTls | common | true | boolean | Whether to auto start SSL handshake.
+| codec | common |  | ProtocolCodecFactory | To use a custom minda codec implementation.
+| decoderMaxLineLength | common | 1024 | int | To set the textline protocol decoder max line length. By default the default value of Mina itself is used which are 1024.
+| disconnect | common | false | boolean | Whether or not to disconnect(close) from Mina session right after use. Can be used for both consumer and producer.
+| disconnectOnNoReply | common | true | boolean | If sync is enabled then this option dictates MinaConsumer if it should disconnect where there is no reply to send back.
+| encoderMaxLineLength | common | -1 | int | To set the textline protocol encoder max line length. By default the default value of Mina itself is used which are Integer.MAX_VALUE.
+| encoding | common |  | String | You can configure the encoding (a charset name) to use for the TCP textline codec and the UDP protocol. If not provided Camel will use the JVM default Charset
+| filters | common |  | List | You can set a list of Mina IoFilters to use.
+| lazySessionCreation | common | true | boolean | Sessions can be lazily created to avoid exceptions if the remote server is not up and running when the Camel producer is started.
+| maximumPoolSize | common | 16 | int | Number of worker threads in the worker pool for TCP and UDP
+| minaLogger | common | false | boolean | You can enable the Apache MINA logging filter. Apache MINA uses slf4j logging at INFO level to log all input and output.
+| noReplyLogLevel | common | WARN | LoggingLevel | If sync is enabled this option dictates MinaConsumer which logging level to use when logging a there is no reply to send back.
+| orderedThreadPoolExecutor | common | true | boolean | Whether to use ordered thread pool to ensure events are processed orderly on the same channel.
+| sslContextParameters | common |  | SSLContextParameters | To configure SSL security.
+| sync | common | true | boolean | Setting to set endpoint as one-way or request-response.
+| textline | common | false | boolean | Only used for TCP. If no codec is specified you can use this flag to indicate a text line based codec; if not specified or the value is false then Object Serialization is assumed over TCP.
+| textlineDelimiter | common |  | Mina2TextLineDelimiter | Only used for TCP and if textline=true. Sets the text line delimiter to use. If none provided Camel will use DEFAULT. This delimiter is used to mark the end of text.
+| timeout | common | 30000 | long | You can configure the timeout that specifies how long to wait for a response from a remote server. The timeout unit is in milliseconds so 60000 is 60 seconds.
+| transferExchange | common | false | boolean | Only used for TCP. You can transfer the exchange over the wire instead of just the body. The following fields are transferred: In body Out body fault body In headers Out headers fault headers exchange properties exchange exception. This requires that the objects are serializable. Camel will exclude any non-serializable objects and log it at WARN level.
+| bridgeErrorHandler | consumer | false | boolean | Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN/ERROR level and ignored.
+| clientMode | consumer | false | boolean | If the clientMode is true mina consumer will connect the address as a TCP client.
+| exceptionHandler | consumer (advanced) |  | ExceptionHandler | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this options is not in use. By default the consumer will deal with exceptions that will be logged at WARN/ERROR level and ignored.
+| cachedAddress | producer | true | boolean | Whether to create the InetAddress once and reuse. Setting this to false allows to pickup DNS changes in the network.
+| exchangePattern | advanced | InOnly | ExchangePattern | Sets the default exchange pattern when creating an exchange
+| synchronous | advanced | false | boolean | Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported).
+|=======================================================================
+// endpoint options: END
+
+
+[[MINA2-Usingacustomcodec]]
+Using a custom codec
+^^^^^^^^^^^^^^^^^^^^
+
+See the Mina how to write your own codec. To use your custom codec with
+`camel-mina`, you should register your codec in the
+link:registry.html[Registry]; for example, by creating a bean in the
+Spring XML file. Then use the `codec` option to specify the bean ID of
+your codec. See link:hl7.html[HL7] that has a custom codec.
+
+[[MINA2-Samplewithsyncfalse]]
+Sample with sync=false
+^^^^^^^^^^^^^^^^^^^^^^
+
+In this sample, Camel exposes a service that listens for TCP connections
+on port 6200. We use the *textline* codec. In our route, we create a
+Mina consumer endpoint that listens on port 6200:
+
+[source,java]
+---------------------------------------------------------------------------------------
+from("mina2:tcp://localhost:" + port1 + "?textline=true&sync=false").to("mock:result");
+---------------------------------------------------------------------------------------
+
+As the sample is part of a unit test, we test it by sending some data to
+it on port 6200.
+
+[source,java]
+-------------------------------------------------------------------------------------------------
+MockEndpoint mock = getMockEndpoint("mock:result");
+mock.expectedBodiesReceived("Hello World");
+ 
+template.sendBody("mina2:tcp://localhost:" + port1 + "?textline=true&sync=false", "Hello World");
+ 
+assertMockEndpointsSatisfied();
+-------------------------------------------------------------------------------------------------
+
+[[MINA2-Samplewithsynctrue]]
+Sample with sync=true
+^^^^^^^^^^^^^^^^^^^^^
+
+In the next sample, we have a more common use case where we expose a TCP
+service on port 6201 also use the textline codec. However, this time we
+want to return a response, so we set the `sync` option to `true` on the
+consumer.
+
+[source,java]
+---------------------------------------------------------------------------------------------
+from("mina2:tcp://localhost:" + port2 + "?textline=true&sync=true").process(new Processor() {
+    public void process(Exchange exchange) throws Exception {
+        String body = exchange.getIn().getBody(String.class);
+        exchange.getOut().setBody("Bye " + body);
+    }
+});
+---------------------------------------------------------------------------------------------
+
+Then we test the sample by sending some data and retrieving the response
+using the `template.requestBody()` method. As we know the response is a
+`String`, we cast it to `String` and can assert that the response is, in
+fact, something we have dynamically set in our processor code logic.
+
+[source,java]
+-----------------------------------------------------------------------------------------------------------------------
+String response = (String)template.requestBody("mina2:tcp://localhost:" + port2 + "?textline=true&sync=true", "World");
+assertEquals("Bye World", response);
+-----------------------------------------------------------------------------------------------------------------------
+
+[[MINA2-SamplewithSpringDSL]]
+Sample with Spring DSL
+^^^^^^^^^^^^^^^^^^^^^^
+
+Spring DSL can, of course, also be used for link:mina.html[MINA]. In the
+sample below we expose a TCP server on port 5555:
+
+[source,xml]
+-----------------------------------------------------------
+   <route>
+     <from uri="mina2:tcp://localhost:5555?textline=true"/>
+     <to uri="bean:myTCPOrderHandler"/>
+  </route>
+-----------------------------------------------------------
+
+In the route above, we expose a TCP server on port 5555 using the
+textline codec. We let the Spring bean with ID, `myTCPOrderHandler`,
+handle the request and return a reply. For instance, the handler bean
+could be implemented as follows:
+
+[source,java]
+-----------------------------------------------
+    public String handleOrder(String payload) {
+        ...
+        return "Order: OK"
+   }
+-----------------------------------------------
+
+[[MINA2-ClosingSessionWhenComplete]]
+Closing Session When Complete
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+When acting as a server you sometimes want to close the session when,
+for example, a client conversion is finished. To instruct Camel to close
+the session, you should add a header with the key
+`CamelMinaCloseSessionWhenComplete` set to a boolean `true` value.
+
+For instance, the example below will close the session after it has
+written the `bye` message back to the client:
+
+[source,java]
+---------------------------------------------------------------------------------------------------
+        from("mina2:tcp://localhost:8080?sync=true&textline=true").process(new Processor() {
+            public void process(Exchange exchange) throws Exception {
+                String body = exchange.getIn().getBody(String.class);
+                exchange.getOut().setBody("Bye " + body);
+                exchange.getOut().setHeader(Mina2Constants.MINA_CLOSE_SESSION_WHEN_COMPLETE, true);
+            }
+        });
+---------------------------------------------------------------------------------------------------
+
+[[MINA2-GettheIoSessionformessage]]
+Get the IoSession for message
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+You can get the IoSession from the message header with this key
+`Mina2Constants.MINA_IOSESSION`, and also get the local host address
+with the key `Mina2Constants.MINA_LOCAL_ADDRESS` and remote host address
+with the key `Mina2Constants.MINA_REMOTE_ADDRESS`.
+
+[[MINA2-ConfiguringMinafilters]]
+Configuring Mina filters
+^^^^^^^^^^^^^^^^^^^^^^^^
+
+Filters permit you to use some Mina Filters, such as `SslFilter`. You
+can also implement some customized filters. Please note that `codec` and
+`logger` are also implemented as Mina filters of type, `IoFilter`. Any
+filters you may define are appended to the end of the filter chain; that
+is, after `codec` and `logger`.
+
+[[MINA2-SeeAlso]]
+See Also
+^^^^^^^^
+
+* link:configuring-camel.html[Configuring Camel]
+* link:component.html[Component]
+* link:endpoint.html[Endpoint]
+* link:getting-started.html[Getting Started]
+
+* link:mina.html[MINA]
+* link:netty.html[Netty]
+

http://git-wip-us.apache.org/repos/asf/camel/blob/c0d59a8b/docs/user-manual/en/SUMMARY.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md
index 0e2ed92..fa424e3 100644
--- a/docs/user-manual/en/SUMMARY.md
+++ b/docs/user-manual/en/SUMMARY.md
@@ -193,6 +193,7 @@
         * [SMTPs](smtps.adoc)
     * [Metrics](metrics.adoc)
     * [Mina](mina.adoc)
+    * [Mina2](mina2.adoc)
     * [Mock](mock.adoc)
     * [NATS](nats.adoc)
     * [Properties](properties.adoc)


[3/3] camel git commit: Added camel-mllp docs to Gitbook

Posted by ac...@apache.org.
Added camel-mllp docs to Gitbook


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/fc5a4772
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/fc5a4772
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/fc5a4772

Branch: refs/heads/master
Commit: fc5a477292f38dc7fb6e3b426c1140f90e512559
Parents: c0d59a8
Author: Andrea Cosentino <an...@gmail.com>
Authored: Mon May 9 10:19:56 2016 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Mon May 9 10:19:56 2016 +0200

----------------------------------------------------------------------
 components/camel-mllp/src/main/docs/mllp.adoc | 172 +++++++++++++++++++++
 docs/user-manual/en/SUMMARY.md                |   1 +
 2 files changed, 173 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/fc5a4772/components/camel-mllp/src/main/docs/mllp.adoc
----------------------------------------------------------------------
diff --git a/components/camel-mllp/src/main/docs/mllp.adoc b/components/camel-mllp/src/main/docs/mllp.adoc
new file mode 100644
index 0000000..ef1c855
--- /dev/null
+++ b/components/camel-mllp/src/main/docs/mllp.adoc
@@ -0,0 +1,172 @@
+[[Mllp-MllpComponent]]
+MLLP Component
+~~~~~~~~~~~~~~
+
+*available as of Camel 2.17*
+
+The MLLP component is specifically designed to handle the nuances of the
+MLLP protocol and provide�the functionality required by Healthcare
+providers to communicate with other systems using the MLLP protocol.
+�The MLLP component �provides a simple configuration URI, automated HL7
+acknowledgment generation and automatic acknowledgement interrogation.
+
+The MLLP protocol does not typically use a large number of concurrent
+TCP connections - a single active TCP connection is the normal case.
+�Therefore, the MLLP component uses�a simple thread-per-connection model
+based an standard Java Sockets. This keeps the implementation simple
+and�eliminates the dependencies other than Camel itself.
+
+The component supports the following:
+
+* A Camel consumer using a TCP Server
+* A Camel producer using a TCP Client
+
+The MLLP component uses byte[] payloads, and relies on Camel Type
+Conversion to convert byte[] to other types. �
+
+Maven users will need to add the following dependency to their pom.xml
+for this component:
+
+[source,xml]
+---------------------------------------------------------
+<dependency>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>camel-mllp</artifactId>
+    <version>x.x.x</version>
+    <!-- use the same version as your Camel core version -->
+</dependency>
+---------------------------------------------------------
+
+[[MLLP-MLLPOptions]]
+MLLP Options
+~~~~~~~~~~~~
+
+
+// component options: START
+The mllp component has no options.
+// component options: END
+
+
+
+// endpoint options: START
+The mllp component supports 19 endpoint options which are listed below:
+
+[width="100%",cols="2s,1,1m,1m,5",options="header"]
+|=======================================================================
+| Name | Group | Default | Java Type | Description
+| hostname | common |  | String | *Required* Hostname or IP for connection for the TCP connection. The default value is null which means any local IP address
+| port | common |  | int | *Required* Port number for the TCP connection
+| acceptTimeout | common | 60000 | int | Timeout value while waiting for a TCP connection TCP Server Only
+| autoAck | common | true | boolean | Enable/Disable the automatic generation of a MLLP Acknowledgement MLLP Consumers only
+| backlog | common | 5 | int | The maximum queue length for incoming connection indications (a request to connect) is set to the backlog parameter. If a connection indication arrives when the queue is full the connection is refused.
+| bindRetryInterval | common | 5000 | int | TCP Server Only - The number of milliseconds to wait between bind attempts
+| bindTimeout | common | 30000 | int | TCP Server Only - The number of milliseconds to retry binding to a server port
+| charsetName | common |  | String | Set the CamelCharsetName property on the exchange
+| connectTimeout | common | 30000 | int | Timeout value for establishing for a TCP connection TCP Client only
+| keepAlive | common | true | boolean | Enable/disable the SO_KEEPALIVE socket option.
+| receiveBufferSize | common |  | Integer | Sets the SO_RCVBUF option to the specified value
+| receiveTimeout | common | 10000 | int | The SO_TIMEOUT value used when waiting for the start of an MLLP frame
+| reuseAddress | common | false | boolean | Enable/disable the SO_REUSEADDR socket option.
+| sendBufferSize | common |  | Integer | Sets the SO_SNDBUF option to the specified value
+| tcpNoDelay | common | true | boolean | Enable/disable the TCP_NODELAY socket option.
+| bridgeErrorHandler | consumer | false | boolean | Allows for bridging the consumer to the Camel routing Error Handler which mean any exceptions occurred while the consumer is trying to pickup incoming messages or the likes will now be processed as a message and handled by the routing Error Handler. By default the consumer will use the org.apache.camel.spi.ExceptionHandler to deal with exceptions that will be logged at WARN/ERROR level and ignored.
+| exceptionHandler | consumer (advanced) |  | ExceptionHandler | To let the consumer use a custom ExceptionHandler. Notice if the option bridgeErrorHandler is enabled then this options is not in use. By default the consumer will deal with exceptions that will be logged at WARN/ERROR level and ignored.
+| exchangePattern | advanced | InOnly | ExchangePattern | Sets the default exchange pattern when creating an exchange
+| synchronous | advanced | false | boolean | Sets whether synchronous processing should be strictly used or Camel is allowed to use asynchronous processing (if supported).
+|=======================================================================
+// endpoint options: END
+
+
+
+[[MLLP-MLLPConsumer]]
+MLLP Consumer
+~~~~~~~~~~~~~
+
+The MLLP Consumer supports receiving MLLP-framed messages and sending
+HL7 Acknowledgements. �The MLLP Consumer can automatically generate the
+HL7 Acknowledgement (HL7 Application Acknowledgements only - AA, AE and
+AR), or the acknowledgement can be specified using
+the�CamelMllpAcknowledgement exchange property. �Additionally, the type
+of acknowledgement that will be generated can be controlled by setting
+the CamelMllpAcknowledgementType exchange property.
+
+[[MLLP-MessageHeaders]]
+*Message Headers*
+^^^^^^^^^^^^^^^^^
+
+The MLLP Consumer adds these headers on the Camel message:
+
+[width="100%",cols="<34%,<33%,<33%",]
+|===========================================
+|*Key* |*MSH field* |*Example*
+|CamelMllpLocalAddress |� |�
+|CamelMllpRemoteAddress |� |�
+|CamelMllpSendingApplication |MSH-3 |APPA
+|CamelMllpSendingFacility |MSH-4 |FACA
+|CamelMllpReceivingApplication |MSH-5 |CAMEL
+|CamelMllpReceivingFacility |MSH-6 |FACB
+|CamelMllpTimestamp |MSH-7 |20150106235900
+|CamelMllpSecurity |MSH-8 |�
+|CamelMllpMessageType |MSH-9 |ADT^A04
+|CamelMllpEventType |MSH-9-1 |AD4
+|CamelMllpTriggerEvent |MSH-9-2 |A04
+|CamelMllpMessageControlId |MSH-10 |12345
+|CamelMllpProcessingId |MSH-11 |P
+|CamelMllpVersionId |MSH-12 |2.3.1
+|CamelMllpCharset |MSH-18 |�
+|===========================================
+
+All headers�are�String�types. If a header value is missing, its value
+is�null.
+
+[[MLLP-ExchangeProperties]]
+*Exchange Properties*
+^^^^^^^^^^^^^^^^^^^^^
+
+The type of acknowledgment the MLLP Consumer generates can be controlled
+by these properties on the Camel exchange:
+
+[width="100%",cols="<34%,<33%,<33%",]
+|====================================
+|*Key* |� |*Example*
+|CamelMllpAcknowledgement |� |�
+|CamelMllpAcknowledgementType |� |�AR
+|====================================
+
+All headers�are�String�types. If a header value is missing, its value
+is�null.
+
+[[MLLP-ConsumerConfiguration]]
+Consumer Configuration
+^^^^^^^^^^^^^^^^^^^^^^
+
+[[MLLP-MLLPProducer]]
+MLLP Producer
+~~~~~~~~~~~~~
+
+The MLLP Producer supports sending MLLP-framed messages and receiving
+HL7 Acknowledgements. �The MLLP Producer interrogates the HL7
+Acknowledgments and raises exceptions if a negative acknowledgement is
+received. �The received acknowledgement is interrogated and an exception
+is raised in the event of a negative acknowledgement.
+
+[[MLLP-MessageHeaders.1]]
+*Message Headers*
+^^^^^^^^^^^^^^^^^
+
+The MLLP Producer adds these headers on the Camel message:
+
+[width="100%",cols="<34%,<33%,<33%",]
+|===================================
+|*Key* |*MSH field* |*Example*
+|CamelMllpLocalAddress |� |�
+|CamelMllpRemoteAddress |� |�
+|CamelMllpAcknowledgement |� |�
+|CamelMllpAcknowledgementType |� |AA
+|===================================
+
+All headers�are�String�types. If a header value is missing, its value
+is�null.
+
+
+

http://git-wip-us.apache.org/repos/asf/camel/blob/fc5a4772/docs/user-manual/en/SUMMARY.md
----------------------------------------------------------------------
diff --git a/docs/user-manual/en/SUMMARY.md b/docs/user-manual/en/SUMMARY.md
index fa424e3..e0164db 100644
--- a/docs/user-manual/en/SUMMARY.md
+++ b/docs/user-manual/en/SUMMARY.md
@@ -194,6 +194,7 @@
     * [Metrics](metrics.adoc)
     * [Mina](mina.adoc)
     * [Mina2](mina2.adoc)
+    * [MLLP](mllp.adoc)
     * [Mock](mock.adoc)
     * [NATS](nats.adoc)
     * [Properties](properties.adoc)