关于网络的问题[求助]
<P>在.arx中要实现ftp服务器的文件的上传和下载,把已经能实现上传和下载功能的类拷贝到工程中却怎么也连接不上服务器,不知道是为什么。</P><P>下面是实现连接的函数,希望那位大侠给点意见,小弟先谢谢了。</P>
<P>void CDlgLogin::OnConnect() <BR>{<BR> UpdateData(TRUE);</P>
<P> //新建对话<BR> m_pInetSession=new CInternetSession(AfxGetAppName(),1,PRE_CONFIG_INTERNET_ACCESS);<BR> try <BR> { <BR> //新建连接对象<BR> m_pFtpConnection=m_pInetSession->GetFtpConnection(m_strServer,m_strUserName,<BR> m_strPassword); <BR> } <BR> catch(CInternetException *pEx) <BR> {<BR> //获取错误<BR> TCHAR szError;<BR> if(pEx->GetErrorMessage(szError,1024))<BR> AfxMessageBox(szError);<BR> else <BR> AfxMessageBox("There was an exception");<BR> pEx->Delete();<BR> m_pFtpConnection=NULL;</P>
<P> return;<BR> }<BR> m_pRemoteFinder = new CFtpFileFind(m_pFtpConnection);</P>
<P> //获得服务器根目录的所有文件并在列表框中显示<BR> BrowseDir("",&m_ctrlRemoteFiles,m_pRemoteFinder,&m_arrRemoteFiles);<BR> <BR>}</P>
页:
[1]