Hello,
Im using the trial version of the edtftpnet CF and planning to buy the license, but i have some problems.
I made a simple example where i connect to my ftp server... its ok, then i try to download some files.. like this...
ftpConn.DownloadFile("Temp", "file1");
ftpConn.DownloadFile("Temp", "file2");
ftpConn.DownloadFile("Temp", "file3");
ftpConn.DownloadFile("Temp", "file4");
ftpConn.DownloadFile("Temp", "file5");...
during the morning he make all the downloads... but during the afternoon he make the download of the 1st file and when he tries the second one he throw a exceptcion Timeout.. here is the complete code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using EnterpriseDT.CF;
using EnterpriseDT.Net.Ftp;
using EnterpriseDT.Util.License;
namespace TesteFTP
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public ExFTPConnection ftpConn = new ExFTPConnection();
public LicenseProperties prop;
private void button3_Click(object sender, EventArgs e)
{
ftpConn.LicenseOwner = "trialuser";
ftpConn.LicenseKey = "703-1811-5349-4362";
ftpConn.ServerAddress = "the server";
ftpConn.UserName = "my user name";
ftpConn.Password = "my pass";
ftpConn.ServerPort = 21;
ftpConn.AutoLogin = true;
//ftpConn.ConnectMode = FTPConnectMode.ACTIVE;
try
{
if (!ftpConn.IsConnected)
ftpConn.Connect();
ftpConn.ChangeWorkingDirectory("my dir");
}
catch (Exception exc)
{
MessageBox.Show("N