Skip to content

Instantly share code, notes, and snippets.

@bhathiya
Last active March 8, 2022 20:05
Show Gist options
  • Save bhathiya/c7142e1140ec98750253 to your computer and use it in GitHub Desktop.
Save bhathiya/c7142e1140ec98750253 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse"
name="JsonSplitterBlog"
transports="https,http"
statistics="disable"
trace="disable"
startOnLoad="true">
<target>
<inSequence>
<payloadFactory media-type="json">
<format>{"users":[{"name":"X", "age":"10"},{"name":"Y", "age":"12"},{"name":"Z","age":"15"}]}</format>
<args/>
</payloadFactory>
<iterate continueParent="true" expression="//users">
<target>
<sequence>
<log level="custom">
<property name="Name is" expression="//users/name"/>
<property name="Age is" expression="//users/age"/>
</log>
</sequence>
</target>
</iterate>
</inSequence>
</target>
<description/>
</proxy>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment