Skip to content

Instantly share code, notes, and snippets.

@edgars
Created January 6, 2010 15:55
Show Gist options
  • Select an option

  • Save edgars/270353 to your computer and use it in GitHub Desktop.

Select an option

Save edgars/270353 to your computer and use it in GitHub Desktop.
<service category="Proxy" name="SerasaServicesAmazoncad"
description="WebService Proxy"
invmScope="GLOBAL">
<listeners>
<http-gateway name="ProxyHttpListener" />
</listeners>
<actions mep="RequestResponse">
<action name="echo-request"
class="org.jboss.soa.esb.actions.SystemPrintln">
<property name="message" value="Message before SOAPProxy" />
</action>
<action name="proxy" class="org.jboss.soa.esb.actions.soap.proxy.SOAPProxy">
<property name="wsdl" value="http://10.4.5.2:8380/serasaServicesAmazoncad/services/SerasaService?wsdl"/>
<property name="endpointUrl" value="http://10.4.5.2:8380/serasaServicesAmazoncad/services/SerasaService"/>
<property name="clientCredentialsRequired" value="false"/>
<property name="http-client-properties">
<http-client-property name="http.proxyHost" value="10.5.1.40"/>
<http-client-property name="http.proxyPort" value="80"/>
</property>
</action>
<action name="echo-response"
class="org.jboss.soa.esb.actions.SystemPrintln">
<property name="message" value="Message after SOAPProxy" />
</action>
</actions>
</service>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment