From 229ffc0489cbc6bae0c331ee5f7948c5092774c3 Mon Sep 17 00:00:00 2001 From: Iwein Fuld Date: Fri, 13 Mar 2009 14:28:30 +0000 Subject: [PATCH] OPEN - issue INT-601: Typo in MarshallingWebServiceInboundGateway.setReplyChannel() http://jira.springframework.org/browse/INT-601 fixed --- .../integration/ws/MarshallingWebServiceInboundGateway.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.integration.ws/src/main/java/org/springframework/integration/ws/MarshallingWebServiceInboundGateway.java b/org.springframework.integration.ws/src/main/java/org/springframework/integration/ws/MarshallingWebServiceInboundGateway.java index d5542cef14..5fd44fa7ed 100644 --- a/org.springframework.integration.ws/src/main/java/org/springframework/integration/ws/MarshallingWebServiceInboundGateway.java +++ b/org.springframework.integration.ws/src/main/java/org/springframework/integration/ws/MarshallingWebServiceInboundGateway.java @@ -78,7 +78,7 @@ public class MarshallingWebServiceInboundGateway extends AbstractMarshallingPayl } public void setReplyChannel(MessageChannel replyChannel) { - this.gatewayDelegate.setRequestChannel(replyChannel); + this.gatewayDelegate.setReplyChannel(replyChannel); } public void setReplyTimeout(long replyTimeout) {