Reputation: 477
Is it possible to set the BizTalk receive location such that it will process the files (say, already have 10 files in the folder) in sequence, ordered by the file creation timestamp?
Upvotes: 0
Views: 522
Reputation: 840
I must say it is a "mission impossible". Please note the "File Creation Date" is not the time file was dropped in your receive location. it is the "creation" date
So whenever you picked a file and want to decide should you process it or wait for a "earlier" file , You have no idea if next second or next day, another file with an earlier creation date will be dropped in your folder.
Upvotes: 0
Reputation: 673
You won't be able to use the default File adapter here, as it does not support this kind of functionality.
One of your options might be to use the File Adapter Sample (from the BizTalk Server SDK) and further customize it to publish the files in order to the MessageBox. Here you can find an interesting blogpost to get you started.
Other options might be:
Upvotes: 2