Compact Framework 文件通过 FTP 上传
有人知道在 .NET 2.0 Compact Framework 下可以正常工作的 FTP 包吗? 我已经尝试过:
- OpennNetCF
- 32feet's In The Hand:它们是相同的,530返回代码
- ftp24cp:桌面版本可以工作,但不能在 被动模式
我的 ftp 服务器是简单的 ftp,带有默认端口、用户名和密码。我可以使用 Total Commander 完成所有工作,甚至是被动或主动模式。 DOS 版本的 ftp 也工作正常,我可以通过命令行上传任何内容。 上述所有包都连接良好,但上传尝试出现错误。
在代码中:
- 设置新的 ftp 对象
- 将连接的事件设置为我自己的处理
- 程序 设置凭据
- 在连接的事件处理程序中连接
- 启动上传
- 关闭连接
非常感谢我能得到的任何帮助。
Does anybody know any FTP package that is working correctly under .NET 2.0 Compact Framework?
I've tried:
- OpennNetCF
- 32feet's In The Hand: they are same, 530 return code
- ftp24cp: desktop version works w/ active but does not works in
passive mode
My ftp server is simple ftp w/ default port, username and password. I can do all with Total Commander even passive or active mode. DOS version ftp also working fine, I can upload anything via command line.
All of the above packages connecting fine but the upload attempt gives error.
In the code:
- setting new ftp object
- set the connected event to my own handler
- set credentials
- connect
- in connected event handler start the upload
- close connection
Any help I can get is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有(商业)SecureBlackbox 库,它支持 .NET CF 2.0 的 FTP(以及许多其他内容),请查看。
不幸的是,我不知道任何其他免费/开源替代品。
There is (commercial) SecureBlackbox library, which supports FTP (and lot of other stuff) for .NET CF 2.0, check it out.
Unfortunately, I do not know any other free/opensource alternatives.