How to establish SFTP Connections
Hi everyone,
Im currently doing a module which needs to transfer files trough FTPS. I'm researching for sample codes but these annoying terminologies leads me to nowhere. :) can someone give me tips, what to dos and the right keyword to search. Thanks. by the way Im doing it on a Windows App Environment using VS 2008 C#. <-- please correct me if I'm wrong... this module is the last part of our project, so please help me guys. THANKS
Re: How to establish SFTP Connections
The .NET Framework supports the FTP protocol but SFTP is a different protocol that is, as far as I'm aware, unsupported by the .NET Framework. As such, you will need to make low-level connections using a Socket object and then implement the protocol yourself, i.e. prepare the data in the correct format and send it using your Socket. You'll need to read up on the specifics of the SFTP protocol and also the use of the .NET Socket class.
Re: How to establish SFTP Connections
PHP Code:
How sad.. but thanks for you reply anyway... lots of sample codes are downloadable but non of them are working... thanks again... i hope somebody will come and help me on this... THANKS again
Re: How to establish SFTP Connections
So you've got lots of sample code and you hope someone will help you, yet you've chosen not to show us any of the code you're using and explain what issues you're having with it. Doesn't sound like the best way to get help to me.