Secure FTP
-
To add to the other responses, see WinSCP .NET Assembly and COM Library :: WinSCP[^]
Regards, Nish
Website: www.voidnish.com Blog: voidnish.wordpress.com
Thanks. I have their Client app. Works nice. Is the assembly secure FTP?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Thanks. I have their Client app. Works nice. Is the assembly secure FTP?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Kevin Marois wrote:
Is the assembly secure FTP?
Yes, see their example : C# example[^]
Regards, Nish
Website: www.voidnish.com Blog: voidnish.wordpress.com
-
Anyone know of a good, FREE C# secure FTP class? I found some here and on CodePlex but they're all lacking in some ways. Just wondering if an CP'ers know of a good class.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
I ended up writing my own FTP class in C# way back in around 2009 and I still use the same code to this day. It's not that difficult to write FTP, and if you have specific requirements then it's a no-brainer.
"There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult." - C.A.R. Hoare Home | LinkedIn | Google+ | Twitter
-
I ended up writing my own FTP class in C# way back in around 2009 and I still use the same code to this day. It's not that difficult to write FTP, and if you have specific requirements then it's a no-brainer.
"There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult." - C.A.R. Hoare Home | LinkedIn | Google+ | Twitter
I think he is referring to SFTP, which I think is a little less intuitive then writing straight FTP stuff.
-
Anyone know of a good, FREE C# secure FTP class? I found some here and on CodePlex but they're all lacking in some ways. Just wondering if an CP'ers know of a good class.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
WinSCP .NET Assembly and COM Library :: WinSCP[^] is probably your best bet for doing this. You can get the package down from NuGet Gallery | WinSCP .NET assembly[^]
Eagles may soar, but weasels don't get sucked into jet engines
-
Kevin Marois wrote:
Is the assembly secure FTP?
Yes, see their example : C# example[^]
Regards, Nish
Website: www.voidnish.com Blog: voidnish.wordpress.com
Do you know if the source is available?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
GitHub - sshnet/SSH.NET: SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.[^] Sounds like it provides SFTP, as well. Worth a gander, I would say. Got the link from here: c# - SFTP Libraries for .NET - Stack Overflow[^] One of the comments points to a codeplex page, which points to the link above. Good luck.
Wow, I just downloaded the source. There's a whole bunch of source files. This seems WAY too complicated. I'll spend some time looking at it, but I'm turned off already.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Anyone know of a good, FREE C# secure FTP class? I found some here and on CodePlex but they're all lacking in some ways. Just wondering if an CP'ers know of a good class.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
What is "secure FTP"? Everyone here is talking like they know what it means. What's wrong with data encryption? Password protected zip files?
Gerry Schmitz wrote:
Everyone here is talking like they know what it means.
Maybe that's because we do... Secure FTP is when the data is encrypted before transmission. Why do through extra step of zipping a file when the SFTP class can encrypt it for you?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Do you know if the source is available?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Sorry, I don't know about that.
Regards, Nish
Website: www.voidnish.com Blog: voidnish.wordpress.com
-
Gerry Schmitz wrote:
Everyone here is talking like they know what it means.
Maybe that's because we do... Secure FTP is when the data is encrypted before transmission. Why do through extra step of zipping a file when the SFTP class can encrypt it for you?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Why not?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
-
Sorry, I don't know about that.
Regards, Nish
Website: www.voidnish.com Blog: voidnish.wordpress.com
Yes, the source is available on their site.
-
Yes, the source is available on their site.
-
Wow, I just downloaded the source. There's a whole bunch of source files. This seems WAY too complicated. I'll spend some time looking at it, but I'm turned off already.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Well, that sucks. You might want to look at the library Nish and others have pointed out then, I guess.
-
Anyone know of a good, FREE C# secure FTP class? I found some here and on CodePlex but they're all lacking in some ways. Just wondering if an CP'ers know of a good class.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
WINSCP for the win
Eric
-
Gerry Schmitz wrote:
Everyone here is talking like they know what it means.
Maybe that's because we do... Secure FTP is when the data is encrypted before transmission. Why do through extra step of zipping a file when the SFTP class can encrypt it for you?
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Well, there is something to be said for having the "data at rest" encrypted. But there is also something to be said for not having your FTP credentials flying across the wire in the clear.
-
Anyone know of a good, FREE C# secure FTP class? I found some here and on CodePlex but they're all lacking in some ways. Just wondering if an CP'ers know of a good class.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
Another vote for WinSCP.
-
Anyone know of a good, FREE C# secure FTP class? I found some here and on CodePlex but they're all lacking in some ways. Just wondering if an CP'ers know of a good class.
If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.