Frank (no reg): C# - Verbindung zu einem FTP-Server

Beitrag lesen

Hi nochmals!

also bei mir funktioniert folgender Code soweit wunderbar, ohne Exception :)

FtpWebRequest wr2 = FtpWebRequest)WebRequest.Create("ftp://ftp.adobe.com");
// we need a proxy with credentials
wr2.Proxy = new WebProxy("chproxy", 80);
wr2.Proxy.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;
// what do we want with the request?
wr2.Method = WebRequestMethods.Ftp.ListDirectory;
// we are firewalled, only PASV mode
wr2.UsePassive = true;
// get the response
FtpWebResponse fwr = (FtpWebResponse)wr2.GetResponse();
// continue with getting the response stream, check the Status of the web response and that's it

Wenn du den Namen nicht auflösen kannst, hast du evt. Beschränkungen des .net codes via Code Access Security? Bzw. ein allgemeines, nicht programmier-spezifisches Problem...

Gruss, Frank