0

チルカット例外で次のメッセージが表示されます

  calling ConnectSocket2
    IPV6 enabled connect with NO heartbeat.
    Cannot connect, hostname is zero length
    ConnectFailReason: 1
    Failed to connect to FTP server.
    Failed.   --ConnectOnly_Ftp2
--ChilkatLog

Connectメソッドを使用してchilkatのFtp2クラス(c#を使用)を使用してFTPサーバーに接続しようとしています。

以下は、FTP2との接続に使用しているクラスです。

   public class FTPClient
   {        
    private Ftp2 m_FtpInfo;

    const int FTP_DEFAULT_PORT = 21;

    public FTPClient()
    {
        m_FtpInfo = null;
    }

    public FTPClient(string userName, string password, string hostName, int port)
    {
        m_FtpInfo = new Ftp2();
        m_FtpInfo.Account = userName;
        m_FtpInfo.ClientIpAddress = hostName;
        m_FtpInfo.Password = password;
        //m_FtpInfo.Port = port;
    }

    public Ftp2 FTPInfo
    {
        get
        {
            if (m_FtpInfo == null)
                m_FtpInfo = new Ftp2();
            return m_FtpInfo;
        }
        set { m_FtpInfo = value; }
    }

    public void Connect()
    {
        lock (this)
        {
            if (m_FtpInfo == null)
            {
                m_FtpInfo = new Ftp2();
            }

            AppConfiguration appConfiguration = AppConfiguration.Instance;
            /*
             * Steps to connect to FTP site using Chilkat
             * 1. Unlock the component by passing the code provided by Chilkat
             * 2. Connect to the Site by specifying the hostname and port
             */

            // Unlock the component.
            if (!m_FtpInfo.UnlockComponent("AnythingWorksFor30DayTrial"))
            {
                throw new FTPConnectionExceptions(CommunicationError.UnlockFailed, m_FtpInfo.LastErrorText);
            }


            // Connect to the FTP server. (use a domain name or IP address)            
            if (!m_FtpInfo.Connect())
            {
                throw new FTPConnectionExceptions(CommunicationError.ConnectionFailed, m_FtpInfo.LastErrorText);
            }
        }
    }

    public void DisposeConnection()
    {
        lock (this)
        {
            if (m_FtpInfo == null) return;

            if (m_FtpInfo.IsConnected)
                m_FtpInfo.Disconnect();

            m_FtpInfo = null;
        }
    }

誰かが私がどこで間違っているのか教えてもらえますか?

4

1 に答える 1

0

m_FtpInfo.ClientIpAddress = hostName;は必要ありません。接続する実際のホストが設定されていません。

編集:

Chilkatのサンプルページでは、ホスト名を次のように設定しています。

ftp.Hostname = "ftp.chilkatsoft.com";

したがって、ClientIpAddress(ローカルPCのIP)を設定する代わりに、Hostnameを使用します。

編集2:

これを試して:

public FTPClient(string userName, string password, string hostName, int port)
{
    m_FtpInfo = new Ftp2();
    m_FtpInfo.Account = userName;
    m_FtpInfo.Hostname = hostName;
    m_FtpInfo.Password = password;
    //m_FtpInfo.Port = port;
}
于 2012-05-10T09:58:42.687 に答える