Design ideas for

Posted by ZeroVector on Stack Overflow See other posts from Stack Overflow or by ZeroVector
Published on 2010-06-08T04:51:01Z Indexed on 2010/06/08 5:32 UTC
Read the original article Hit count: 156

Filed under:
|

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.

Are there are any good articles/design patterns to use? I think it sounds like a good candidate for WCF since ideally it would be load balanced against a few machines.

Development will be in C#/.NET 3.5.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about wcf