Are there classes for NIS, SCP, SFTP, RCP for connecting to Unix?

G

Guest

Hi, I'm using VS2005, .net 2.0 and created a stand-alone windows application.
I need to connect to Unix server on the network to read in a couple of files
from it. I also am required to provide the user with all those protocols and
FTP for user to select. I found a FTPWebRequest class for .net 2.0 but
haven't figured out how to specified the name of the file that I want to down
load. But, are there classes or functions I can use for these other
protocols? Any sample codes on how to use them? Thank you.
 
G

Guest

Pucca said:
Hi, I'm using VS2005, .net 2.0 and created a stand-alone windows application.
I need to connect to Unix server on the network to read in a couple of files
from it. I also am required to provide the user with all those protocols and
FTP for user to select. I found a FTPWebRequest class for .net 2.0 but
haven't figured out how to specified the name of the file that I want to down
load. But, are there classes or functions I can use for these other
protocols? Any sample codes on how to use them? Thank you.

You specify the file name to download in the URL:
ftp://ftp.xxxx.domain/path/file.ext

Arne
 
G

Guest

Pucca said:
Hi, I'm using VS2005, .net 2.0 and created a stand-alone windows application.
I need to connect to Unix server on the network to read in a couple of files
from it. I also am required to provide the user with all those protocols and
FTP for user to select. I found a FTPWebRequest class for .net 2.0 but
haven't figured out how to specified the name of the file that I want to down
load. But, are there classes or functions I can use for these other
protocols? Any sample codes on how to use them? Thank you.

Regarding SCP / SFTP try look at stuff like:

http://www.jscape.com/sshfactorydotnet/
http://www.eldos.com/sbb/net-sftp.php
http://www.codeproject.com/cs/internet/sharpssh.asp
http://www.enterprisedt.com/products/edtftpnetpro/overview.html
http://www.rebex.net/sftp.net/
http://3sp.com/showMaverickDotNet.do

Arne
 
G

Guest

Thank you. I was able to get my file using FTP. I will now check out the
links fo the other protocols. Thank you.
 
G

Guest

Hi Arne, thanks for the url links, they're very helpful. I tried looking ofr
NIS but cound't find anything. Does .net 2.0 supports this? If not, are
there commerical components that you know of?
 
G

Guest

Pucca said:
Hi Arne, thanks for the url links, they're very helpful. I tried looking ofr
NIS but cound't find anything. Does .net 2.0 supports this? If not, are
there commerical components that you know of?

None that I am aware of.

NIS is very Unix'ish.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top