diff --git a/docs/src/reference/docbook/router.xml b/docs/src/reference/docbook/router.xml
index e4bfe6b2d4..1bc5116a14 100644
--- a/docs/src/reference/docbook/router.xml
+++ b/docs/src/reference/docbook/router.xml
@@ -289,13 +289,45 @@
ignore-send-failures
-
- If set to true, any failures that
- occur while trying to send to a single channel will be
- ignored. Otherwise, a MessageDeliveryExceptions
- will be thrown. This attribute defaults to
- false.
-
+
+ If set to true, failures to send to a
+ message channel will be ignored. If set to false,
+ a MessageDeliveryException will
+ be thrown instead, and if the router resolves more than
+ one channel, any subsequent channels will not receive
+ the message.
+
+
+ The exact behavior of this attribute depends on the type
+ of the Channel messages are sent to. For
+ example, when using direct channels (single threaded),
+ send-failures can be caused by exceptions thrown by components
+ much further down-stream. However, when sending
+ messages to a simple queue channel (asynchronous) the
+ likelihood of an exception to be thrown is rather remote.
+
+
+ While most routers will route to a single channel, they
+ are allowed to return more than one channel name. The
+ recipient-list-router, for instance, does
+ exactly that.
+
+ If you set this attribute to true
+ on a router that only routes to a single channel, any
+ caused exception is simply swallowed, which usually makes
+ little sense to do. In that case it would be better to
+ catch the exception in an error flow at the flow entry
+ point.
+
+ Therefore, setting the ignore-send-failures
+ attribute to true usually makes
+ more sense when the router implementation returns more
+ than one channel name, because the other channel(s)
+ following the one that fails would still receive the Message.
+
+
+ This attribute defaults to false.
+
timeout
diff --git a/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.1.xsd b/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.1.xsd
index 640129c9ec..27c50c3f75 100644
--- a/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.1.xsd
+++ b/spring-integration-core/src/main/resources/org/springframework/integration/config/xml/spring-integration-2.1.xsd
@@ -1009,7 +1009,7 @@ endpoint itself is a Polling Consumer for a channel with a queue.
That property should be settable on the target payload instance. Exactly one of the 'value'
or 'expression' attributes must be provided as well. The former for a literal value to set,
and the latter for a SpEL expression to be evaluated. The root object of the evaluation
- context is the Message that was returned from the flow initiated by this enricher.
+ context is the Message that was returned from the flow initiated by this enricher.
@@ -2679,11 +2679,18 @@ endpoint itself is a Polling Consumer for a channel with a queue.
-
- Specify whether a failure to send to a single channel should
- be ignored. Otherwise MessageDeliveryExceptions will be thrown.
- Defaults to false.
-
+