Hi again,
Following my previous post, we are currently trying to get Exchange Rates from a HTTP GET request, where the date is a parameter.
Those rates are provided under XML form.
For the current day date, it’s plain and simple because the date parameter is not needed.
But the expected final process would be to get the rates for the last 7 days, each end of week.
For performance/security/changing XML structure issues, the best would be to store one XML for each day, allowing us to then process XML files without the pressure of getting it right at the time of the request. In few terms, 1 date = 1 XML.
The thing is, since HTTP Connector cannot use Output File URL when multi HTTP requests are made, we would have to flow the results into a next component.
I suppose that this next component would be an XML extract and/or writer if we wanted to store the XML file.
But it’s not clear as to how to handle an input XML format flowed to an “output field” that seems to expect a string output ?
Thank you for your help.