I will receive a soap message from MQ.I want to convert it in a java object which will contain two properties storeId and correlationId.Than i will put this object on a spring integration output channel.Could you please provide me any help do i need to create custom tranformer to create this java object or there already exist some thing in spring integration itself.It i need to create custome than how
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wal="http://abc.dbs.com">
<soapenv:Header/>
<soapenv:Body>
<wal:PutStoreIdsInMsgQue>
<MsgQueName>
<storeIds>5945</storeIds>
<correlationId>ECOMM_09132011</correlationId>
</MsgQueName>
</wal:PutStoreIdsInMsgQue>
</soapenv:Body>
</soapenv:Envelope>


Reply With Quote