INT-2475 Fix WS Gateway Result Payload

Fixed the return value of a non-SOAP message to return the extracted result as is, added tests

INT-2475 polishing based on PR comments

INT-2475 added POX tests for DomSource and Document as per PR suggestion
This commit is contained in:
Oleg Zhurakousky
2012-03-20 12:07:37 -04:00
committed by Gary Russell
parent 2eb3fa3783
commit 3ef9177248
3 changed files with 126 additions and 34 deletions

View File

@@ -237,7 +237,7 @@ public abstract class AbstractWebServiceOutboundGateway extends AbstractReplyPro
return siMessage;
}
else {
return message.getPayloadSource();
return resultObject;
}
}