Using A Csv To Xml Map In A Two-way Send Port That Polls Data From A Public Rest Api
My situation is like this: I need to get CSV data from a REST API using the Wcf-WebHttp adapter, map this data to XML using a map I have deployed (along with the CSV and XML schema
Solution 1:
For your Receive Pipeline on your Two-way send port, your will need to have a pipeline with a Flat File Disassembler that is pointing to your CSV schema to parse the CSV into XML. You would then possibly have an inbound map to transform that XML into another XML format.
You don't need a Outbound map if your Two-Way send port is doing a GET against the REST API (as you won't be sending a message body anyway).
Post a Comment for "Using A Csv To Xml Map In A Two-way Send Port That Polls Data From A Public Rest Api"