Available options for hosting FTP server in .NET application

Posted by duane on Stack Overflow See other posts from Stack Overflow or by duane
Published on 2010-05-28T20:26:21Z Indexed on 2010/05/28 21:12 UTC
Read the original article Hit count: 236

Filed under:
|
|

I need to implement an FTP service inside my .NET application (running as a Windows Service) and have not had much luck finding good/current source code or vendors. Ideally it needs to be able to respond to the basic FTP Protocol and accept the data stream from an upload via a stream, enabling me to process the data as it is being received (think on the fly hashing).

I need to be able to integrate it into my service because it will stack on top of our current code base with an existing custom TCP/IP communication protocol. I don't want to write (and then spend time debugging and performance testing) my own protocol, or implementation.

I have already found plenty of ftp client implementations, I just need an acceptable server solution.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET