VB.NET - Regarding SFTP component.

Asked By Gurmeet Singh
10-Apr-08 08: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  Try this

10-Apr-08 07: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  FtpWebRequest Class in System.Net namespace helps in implementing FTP

14-Apr-08 09: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  Regarding SFTP component

26-Nov-08 01: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.

 

Create New Account
help
Frequently asked Interview Questions in ADO.Net hi friends Any one send frequently asked Important questions in C# .Net, ADO .Net, Asp .Net and Sql Server. . . . . . . . tx in Advance. . . . . . Hi, Find this. . (B)What is an IL? (B)What is a types? (B) What is concept of Boxing and Unboxing ? (B) What is the difference between VB.NET and C#? (I) what is the difference between System exceptions and Application exceptions? (I)What is CODE Access security? (I)What is a satellite assembly? (A) How to prevent my .NET DLL to be decompiled? (I) what is the difference between Convert.toString and .toString () method
Interview Questions for .NET Framework This article is specially for the users those are in development or want to be a .net developer • To test a Web Service you must create a windows application or web application to consume this service? It is True / False? FALSE How many classes can a single.NET DLL contain? Answer1: As many Answer2: One or more What are good ADO.NET object(s) to replace the ADO Recordset object? The differences includes In ADO, the in memory representation of data is the recordset. In ADO.net, it is the dataset A recordset looks like a single table in ADO In contrast, a dataset is a collection of one or more tables in ADO.net ADO is designed primarily for connected access ADO net the disconnected access to the database is used In ADO you communicate with the database
choosen the Blog post from here This means the installation should be on a single server as Domain Controller , as MS SQL database server and as MOSS2007 server farm. Only one uses should be used. Thats what I have done, I followed the outlined howto. No dedicated errors happended during installation. Just the MSSQL has dsiplay some warning, regarding the installation of MSSQL on a Domain Controller. My single SharePoint admin account is named I am reading the logfiles placed under "c: \ program files \ common files \ microsoft shared \ web server extensions \ 12 \ logs". I don't find any relavant information regarding authentication or what else might fail here. Help and / or hints are welcome, where to von der Anmeldung angeforderte 'SharePoint_07_Config'-Datenbank kann nicht geöffnet werden. Fehler bei der Anmeldung.' Source: '.Net SqlClient Data Provider' Number: 4060 State: 1 Class: 11 Procedure: '' LineNumber: 65536 Server: 'd-it5
Difference between vb and vb.net Hai, I want to know about the main difference between vb and vb.net. • The greatest change in VB6 and VB.NET is of runtime environment. VB6 used the VB-Runtime while VB.NET uses the .Net Common Language Runtime (.Net CLR). The CLR is much better designed and
Differences for vb.net and c# with Example Dear all Differences for vb.net and c# with Example., plz give the solutions Thanks to all Hi See the bellow comparission :: This comparission is with syntax and example. . . Comments VB.NET 'Single line only Rem Single line only C# / / Single line / * Multiple line * / / / / XML comments on single line / * * XML comments on multiple lines * / Program Structure VB.NET Imports System Namespace MyNameSpace Class HelloWorld 'Entry point which delegates to C-style main Private