Created
July 25, 2012 18:33
-
-
Save ddossot/3177759 to your computer and use it in GitHub Desktop.
FedACH CXF proxy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<flow name="cxfProxy"> | |
<http:inbound-endpoint | |
address="http://localhost:8080/fed-ach" | |
exchange-pattern="request-response"> | |
<cxf:proxy-service | |
wsdlLocation="http://www.webservicex.net/FedACH.asmx?WSDL" | |
namespace="http://www.webservicex.net/" | |
service="FedACH" | |
payload="body" /> | |
</http:inbound-endpoint> | |
<copy-properties propertyName="SOAPAction" /> | |
<http:outbound-endpoint | |
address="http://www.webservicex.net/FedACH.asmx" | |
exchange-pattern="request-response"> | |
<cxf:proxy-client payload="body" /> | |
</http:outbound-endpoint> | |
</flow> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment