MrLevie Mesaj tarihi: Ekim 3, 2011 Paylaş Mesaj tarihi: Ekim 3, 2011 arkadaşlar aşağıdaki kodu kullanarak ftp servera upload etmeye çalışıyorum ama içinden çıkamadım. Compile oluyor ama sorun nerede anlamadım using System; using System.IO; using System.Net; using System.Text; namespace Examples.System.Net { public class WebRequestGetExample { public static void Main () { // Get the object used to communicate with the server. FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://127.0.0.1:21/lol.html"); request.UsePassive = true; request.Method = WebRequestMethods.Ftp.UploadFile; // This example assumes the FTP site uses anonymous logon. request.Credentials = new NetworkCredential ("MrLevie","1905"); // Copy the contents of the file to the request stream. StreamReader sourceStream = new StreamReader("testfile.txt"); byte[] fileContents = Encoding.UTF8.GetBytes(sourceStream.ReadToEnd()); sourceStream.Close(); request.ContentLength = fileContents.Length; Stream requestStream = request.GetRequestStream(); requestStream.Write(fileContents, 0, fileContents.Length); requestStream.Close(); FtpWebResponse response = (FtpWebResponse)request.GetResponse(); Console.WriteLine("Upload File Complete, status {0}", response.StatusDescription); response.Close(); } } } intellisense GetRequestStream() kısmında bi kıllık olduğunu öne sürer gibi yapıyor. bu arada serverda bir problem yok. Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
MrLevie Mesaj tarihi: Ekim 4, 2011 Konuyu açan Paylaş Mesaj tarihi: Ekim 4, 2011 püüü yazıklar olsun bi cevap yok mu Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
Öne çıkan mesajlar