I have a simple ssis package what saves result from web service method to XML file.
Connection OK, file creating, but contains <
and >
tags instead of <
and >
.
The main issue is that you are passing the xml from the web service as a string (Not recommended)
you have to change the web method to return an XmlDocument
, load the well-formed xml into it, and passed it back SSIS.
Or you can do a little workaround is to run a script after saving the xml file and replace <
with <
and >
with >
Useful Links