|
Establishing an |
|
No. Rebex FTP focuses solely on the client side of the FTP protocol. There is no built-in connection manager. Therefore we recommend a next solution. To connect using a dial up connection from .NET CF on PocketPC, you can use Connection Manager functions such as ConnMgrEnumDestinations, ConnMgrEstablishConnection and ConnMgrReleaseConnection. Check out http://msdn.microsoft.com/library/default.asp?url=/library/en-us/APISP/html/sp_cnmn_connection_manager.asp for details. There are no classes available for this in .NET CF, but it can be done quite easily using P/Invoke if you have some experience with this. The following blog post covers this in detail and also contains some C# code: http://blogs.msdn.com/anthonywong/archive/2006/03/13/550686.aspx. Another solution is using the Smart Device Framework by OpenNETCF.org that contains a wrapper class for the Connection Manager: http://www.opennetcf.com/sdf It is free for any commercial or noncommercial purpose up to the version 1.4. It also includes the source code, so you might either use it as is or as a reference for your own implementation if you prefer. |