Hi All,
I'm using synapse to proxy a web service that uses XML over HTTP. My
configuration looks like this:
<definitions xmlns= "http://ws.apache.org/ns/synapse";>
  <proxy name="TestProxy">
    <target>
      <endpoint>
        <address uri="http://someremoteservice.com/msg"; format="pox" />
      </endpoint>
      <inSequence>
        <log level= "full" />
      </inSequence>
      <outSequence>
        <log level= "full" />
        <send />
      </outSequence>
    </target>
  </proxy>
</definitions>

I post XML to localhost:8080/soap/TestProxy, and synapse passes it to
the specified endpoint without changing it. The remote service returns
XML which is wrapped in soapenv:Body and soapenv:Envelope tags. Is
there a way to specify that the response (like the request) remain
unadulterated by SOAP tags?
Thanks,
Garth

Reply via email to