search
Japanese Chinese Nederlands Espanol Italiano Deutsch Francais Twitter Rss Feeds
MicrosoftArticlesForumsFAQs
C# .NET
VB.NET
Visual Studio .NET
ADO.NET
Xml / Xslt
VB 6.0
.NET CF
GDI+
LINQ
Deployment
Security
FoxPro
Silverlight / WPF
Entity Framework
RIA Services

Web ProgrammingArticlesForumsFAQs
JavaScript
ASP
ASP.NET
Web Services

Non-MicrosoftArticlesForumsFAQs
NHibernate
Perl
PHP
Ruby
Java
Linux / Unix
Apple
Open Source

DatabasesArticlesForumsFAQs
SQL Server
Access
Oracle
MySQL
Other Databases

OfficeArticlesForumsFAQs
Excel
Word
Powerpoint
Outlook
Publisher
Money

Operating SystemsArticlesForumsFAQs
Windows 7
Windows Server
Windows Vista
Windows XP
Windows Update
MAC
Linux / UNIX

Server PlatformsArticlesForumsFAQs
BizTalk
Site Server
Exhange Server
IIS

Graphic DesignArticlesForumsFAQs
Macromedia Flash
Adobe PhotoShop
Expression Blend
Expression Design
Expression Web

OtherArticlesForumsFAQs
Subversion / CVS
Ask Dr. Dotnetsky
Active Directory
Networking
Uninstall Virus
Job Openings
Product Reviews
Search Engines
Resumes

 

View Other VB.NET Posts   Ask New Question 
Regarding SFTP component.
Gurmeet Singh posted at Thursday, April 10, 2008 8:24 AM

Hi Friends

I would like to make SFTP component that connect to SFTP server. I have gone through the System.net.ftpclient class and use FTPwebRequest class but not able to connect to server. I have used chilkanet third party dll that connect to SFTP server only if i disable SSL layer from that server in that case it act like simple FTP server. So need any library class that help me to connect to the server and do file operations like put and get. i have gone through the sites and only get libraries for simple FTP terminal connection but i need SFTP library. please suggest or guide.


 
  Try this
Aravind Kumar replied to Gurmeet Singh at Thursday, April 10, 2008 7:59 AM

I've heard that there are very few components which support SFTP thru .Net. Here is one among that.

http://www.freedownloadscenter.com/Programming/Components_and_Libraries/Rebex_SFTP_for__NET_Download.html

 
FtpWebRequest Class in System.Net namespace helps in implementing FTP
logiclabz .com replied to Gurmeet Singh at Monday, April 14, 2008 9:44 AM
Sample Link:
FTP File Upload using FtpWebRequest in .Net C#

FtpWebRequest Class in System.Net namespace helps in implementing a File Transfer Protocol (FTP) client in .Net.
To obtain an instance of FtpWebRequest, use the Create method.
The URI is of the form "ftp://127.0.0.1/path", first the .NET Framework logs into the FTP server using the user name and password set by the Credentials property, then the current directory is set to <UserDirectory>/path.

When using an FtpWebRequest object to upload a file to a server, you must write the file content to the request stream obtained by calling the GetRequestStream method.
You must write to the stream and close the stream before sending the request.
 
Regarding SFTP component
Bruce Blackshaw replied to Gurmeet Singh at Wednesday, November 26, 2008 1:46 AM

Why not try edtFTPnet/PRO? It supports SFTP (and FTPS) in a single component, has many GUI components included, and new features are being constantly added.

See http://www.enterprisedt.com/products/edtftpnetpro/overview.html  for more details and to download a trial.