I'm using spring integration to get messages off of an outgoing channel. Each message is in the following format:
<message>
<properties>
<property>
<key>a</key>
<value>b</value>
</property>
<property>
<key>c</key>
<value>d</value>
</property>
</properties>
</message>
For each message I want to parse value b for key a and write to disk. How can I do this in spring integration?