Hey guys,
I have been stuck with this issue for a long time now. Can anyone help?
Client is sending me the XML document below:
<BatchFile>
<OrgID>3c6ca126</OrgID>
<BatchID>01AB6B51</BatchUID>
<Type>VPC</DocumentType>
<TextFile>123abcd firstname lastname DOB address 00001233kdkdikdi
</TextFile>
</BatchFile>
What I am trying to do in my orchestration is grab the element <TextFile> and send save it to a folder as a text file. I did declare a message of type string and assigned it to this <TextFile> element. But, when I send it to a file location, the file is appended with the tag <?xml version=\”1.0\”?><string>…..contents of <TexFile>……..</String>.
I don’t want these extra tags so what can I do here. Please help?????????