foreign language support (wodFtpDLX / wodFtpDLX.NET)
I am using visual c++ with wodftpdlx
server : wodFTPD
its working fine at ftp protocol mode
[code]
....
m_ftpData.SetPort(21);
m_ftpData.SetProtocol(0);
....
VARIANT vLocalFile;
VARIANT vRemoteFile;
vLocalFile.vt = VT_BSTR;
vRemoteFile.vt = VT_BSTR;
CString str1 = "d:\\desktop\\테스트.txt";
CString str2 = "/테스트.txt";
vLocalFile.bstrVal = str1.AllocSysString();
vRemoteFile.bstrVal = str2.AllocSysString();
m_ftpData.GetFile(vLocalFile, vRemoteFile);
but component returned an error message at sftp protocol mode
"sever returned an error:"
[code]
....
m_ftpData.SetPort(22);
m_ftpData.SetProtocol(1);
....
VARIANT vLocalFile;
VARIANT vRemoteFile;
vLocalFile.vt = VT_BSTR;
vRemoteFile.vt = VT_BSTR;
CString str1 = "d:\\desktop\\테스트.txt"; //included foreign language string (korean)
CString str2 = "/테스트.txt"; //included foreign language string (korean)
vLocalFile.bstrVal = str1.AllocSysString();
vRemoteFile.bstrVal = str2.AllocSysString();
m_ftpData.GetFile(vLocalFile, vRemoteFile);
please help