I see that BizTalk has support for consuming web services Tutorial 5: Invoking a REST Interface Using BizTalk Server (learn.microsoft.com)
There is a website like https://thesite.com/12345/20200815/data.csv
. The part that is 20200815 changes every day. Can BizTalk download data from such a source using the web service consumption feature with the date part changed every day?
Below is the solution I would do and have done in BizTalk 2013 R2 up. However it might be slightly different with the Open Source Web Rest adapter for BizTalk 2010
HTTP Method and URL mapping
<BtsHttpUrlMapping>
<Operation Method="GET" Url="/12345/{Date}/data.csv" />
</BtsHttpUrlMapping>
Variable Mappping