Skip to content

Instantly share code, notes, and snippets.

@ddossot
Created July 25, 2012 18:33
Show Gist options
  • Save ddossot/3177759 to your computer and use it in GitHub Desktop.
Save ddossot/3177759 to your computer and use it in GitHub Desktop.
FedACH CXF proxy
<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