diff --git a/org.springframework.integration.jms/.classpath b/org.springframework.integration.jms/.classpath
index ab9b27b384..46328184a6 100644
--- a/org.springframework.integration.jms/.classpath
+++ b/org.springframework.integration.jms/.classpath
@@ -6,6 +6,8 @@
+
+
diff --git a/org.springframework.integration.jms/ivy.xml b/org.springframework.integration.jms/ivy.xml
index e2e9b21734..19f3104067 100644
--- a/org.springframework.integration.jms/ivy.xml
+++ b/org.springframework.integration.jms/ivy.xml
@@ -21,6 +21,8 @@
+
+
diff --git a/org.springframework.integration.jms/src/main/java/org/springframework/integration/jms/JmsDestinationBackedMessageChannel.java b/org.springframework.integration.jms/src/main/java/org/springframework/integration/jms/JmsDestinationBackedMessageChannel.java
new file mode 100644
index 0000000000..cf86c9cd75
--- /dev/null
+++ b/org.springframework.integration.jms/src/main/java/org/springframework/integration/jms/JmsDestinationBackedMessageChannel.java
@@ -0,0 +1,161 @@
+/*
+ * Copyright 2002-2009 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springframework.integration.jms;
+
+import javax.jms.ConnectionFactory;
+import javax.jms.Destination;
+import javax.jms.MessageListener;
+import javax.jms.Topic;
+
+import org.springframework.beans.factory.BeanNameAware;
+import org.springframework.beans.factory.InitializingBean;
+import org.springframework.integration.channel.SubscribableChannel;
+import org.springframework.integration.core.Message;
+import org.springframework.integration.core.MessageChannel;
+import org.springframework.integration.core.MessagingException;
+import org.springframework.integration.dispatcher.BroadcastingDispatcher;
+import org.springframework.integration.dispatcher.MessageDispatcher;
+import org.springframework.integration.dispatcher.RoundRobinLoadBalancingStrategy;
+import org.springframework.integration.dispatcher.UnicastingDispatcher;
+import org.springframework.integration.gateway.SimpleMessageMapper;
+import org.springframework.integration.message.InboundMessageMapper;
+import org.springframework.integration.message.MessageHandler;
+import org.springframework.jms.core.JmsTemplate;
+import org.springframework.jms.listener.DefaultMessageListenerContainer;
+import org.springframework.jms.support.destination.DestinationResolver;
+import org.springframework.transaction.PlatformTransactionManager;
+import org.springframework.util.Assert;
+
+/**
+ * A {@link MessageChannel} implementation that is actually backed by a JMS
+ * Destination. This class is useful as a drop-in replacement for any
+ * Spring Integration channel. The benefit of using this channel is that
+ * the full power of any JMS provider is available with only minimal
+ * configuration changes and without requiring any code changes. The most
+ * obvious benefit is the ability to delegate message persistence to the
+ * JMS provider.
+ *
+ * @author Mark Fisher
+ * @since 2.0
+ */
+public class JmsDestinationBackedMessageChannel implements
+ SubscribableChannel, MessageListener, BeanNameAware, InitializingBean {
+
+ private final JmsTemplate jmsTemplate = new JmsTemplate();
+
+ private final DefaultMessageListenerContainer container = new DefaultMessageListenerContainer();
+
+ private final InboundMessageMapper