I need to design and I'm looking in to using WCF to accomplish this.
Basically here is how I have it:
Server process: Generate list of files to transfer across multiple FTP/SFTP sites in to a queue.
Client(s): Talk to server to get files to transfer. Transfer the files acquired. All the data necessary to transfer the files will be present. Once transferred successfully, notify the server to remove it from the queue. Also, make sure no other client is trying to perform the transfer.
I think it sounds like a good candidate for WCF, since ideally it would be load balanced against a few machines.
Are there are any good articles/design patterns to use?