Hi,
we have requirement where we need to generate SOAP structure and call webservice of target system.
We do not have proper wsdl files from target system and they are using standard HRXML.
The format of xml has envelope and in envelope there is field payload in which all the payload along with CDATA wrapper has to be passed through as single string.
<Envelope>
<Sender>
<Id>HRXMLEMPLID</Id>
<Credential>1234</Credential>
</Sender>
<Recipient>
<id/>
</Recipient>
<TransactInfo>
<TransactId>123</TransactId>
<TimeStamp>datetime</TimeStamp>
</TransactInfo>
<Packet>
<PacketInfo>
<PacketId>1</PacketId>
<Action>SET</Action>
<Manifest>xyz</Manifest>
</PacketInfo>
<Payload>payload with CDATA tag</Payload>
</Packet>
</Envelope>
Note: we have to do mapping to generate the payload then put the payload in CDATA tag and then insert in payload node of envelope.
Please provide steps on how to achieve this.
Thanks,
Vinayak