Reputation: 984
I have input files coming from several different source systems and they are all in different formats.
My aim is to convert them each into a uniform xml doc and dump them in a folder.
How can i do this in biztalk?
Upvotes: 0
Views: 1159
Reputation: 81
This is normal Biztalk usage.
Upvotes: 1
Reputation: 48230
I would start by creating an XSD for each single possible input type. Then I would create separate processes for each single input type and the implementation of each process would involve applying an XSLT transform to the input data. For this you would also need a separate XSLT for each input type so that the transformation converts the input type data to your expected output type.
Storing data in a folder is just as easy as selecting a file system adapter for the output port.
Upvotes: 1