Antonio
Do you plan to make tftp class available for fwppc ?
I neeed to retreive the content of a ftp directory .
This is straight from tftp class, if not i have to figure out another way.
Thanks for your reply
Richard
Antonio
Do you plan to make tftp class available for fwppc ?
I neeed to retreive the content of a ftp directory .
This is straight from tftp class, if not i have to figure out another way.
Thanks for your reply
Richard
Richard,
It seems that wininet.dll is available for Windows Mobile, so it should not be difficult to port the code to FWPPC. We are going to check it.
Antonio Linares wrote:Richard,
It seems that wininet.dll is available for Windows Mobile, so it should not be difficult to port the code to FWPPC. We are going to check it.
Richard,
There is already available a new FWPPC build to be downloaded with MsgRun() support. There is a working sample at samples\TestMRun.prg.
It seems to work well but we appreciate your feedback. Thanks,
> spinners
its on our todo list.
> and curiously scopes (i thought this one depending on harbour ???).
Yes, we upgrade Harbour for Pocket PC every few months from Harbour CVS. We may upgrade it in short.
Antonio,
You already have a forecast of when you will have TFTP and TFTPFILE for FwPpc?
Vilian,
Its on our todo list, though actually we are busy building a new Harbour for Pocket PC build, using the most recent Harbour CVS files.
Antonio,
I know that the friend must is full of things to make, but to conclude our first application with FWPPC, lacks only the sending and act of receiving of data saw ftp, thus would be grateful if the implementation of class ftp could place enters its priorities.
Hi Antonio,
Without wanting to pressure you, but necessary to inform a date for conclusion of the system for my customer. How I am depending only on the support the ftp, you has some forecast pra to have this concluded class?
Vilian,
We are finishing the new FWPPC build (much improved memory management and use of current Harbour CVS files). In a matter of two or three days we may be able to continue development with WinINet.dll
Antonio,
Thanks,
I am here counting the minutes while I wait.
Hi Antonio,
You already have a date to complete this development?
Vilian,
It is almost finished. It may be ready for tomorrow, probably.
// Testing the FiveWin Internet Classes
#include "FWCE.ch"
function Main()
local oInternet := TInternet():New()
local oFTP := TFTP():New( "ftp.microsoft.com", oInternet ) // Microsoft FTP
local aFiles
if ! Empty( oFTP:hFTP )
aFiles = oFTP:Directory( "*.*" )
MsgInfo( Len( aFiles ) )
AEval( aFiles, { | aFile | MsgInfo( aFile[ 1 ] ) } )
else
MsgAlert( "oFTP:hFTP is null" )
endif
oInternet:End()
MsgInfo( "Done!" )
return nil

Hi, Antonio,
Congratulations, but when you intend to liberate this new version?
Vilian,
We have already published it though we have not tested it 100%, so in case there is a required little fix, we may do it asap.