HELP - Example Using WebRequest.GetRequestStream To FTP GET Files

  • Thread starter Thread starter Robert Johnson
  • Start date Start date
R

Robert Johnson

Does anyone have an example of using WebRequest.GetRequestStream to
GET files from one platform, (AS400, UNIX, IBM390), to another
platform, Windows 2000 or NT, like the DOS FTP routine ?
 
Robert said:
Does anyone have an example of using WebRequest.GetRequestStream to
GET files from one platform, (AS400, UNIX, IBM390), to another
platform, Windows 2000 or NT, like the DOS FTP routine ?

There's no FTP support in the pluggable protocol framework
(WebRequest/WebResponse) in .NET 1.1. You'll need to dig deeper and use
System.Net.Sockets.Socket or look for a 3rd party component.

Cheers,
 
Back
Top