tftp class

tftp class

Postby Richard Chidiak » Sun Sep 03, 2006 7:05 am

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
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
User avatar
Richard Chidiak
 
Posts: 946
Joined: Thu Oct 06, 2005 7:05 pm
Location: France

Postby Antonio Linares » Mon Sep 04, 2006 12:40 pm

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.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41318
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Richard Chidiak » Mon Sep 04, 2006 7:12 pm

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.


Antonio :D

Gracias,

This issue is not critical for me, i can wait.

I am much more interested in Msgrun replacement , spinners and curiously scopes (i thought this one depending on harbour ???).

Msgrun is as far as i am concerned, the most critical point missing today. I have not found a replacement for it, probably out of ideas on the subject.

Do you have an idea of any replacement ?

Thank you

Richard

Keep faith, FWPPC is a fantastic tool.
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
User avatar
Richard Chidiak
 
Posts: 946
Joined: Thu Oct 06, 2005 7:05 pm
Location: France

Postby Antonio Linares » Mon Sep 04, 2006 10:30 pm

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.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41318
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby vilian » Mon Oct 16, 2006 2:13 pm

Antonio,

You already have a forecast of when you will have TFTP and TFTPFILE for FwPpc?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Postby Antonio Linares » Mon Oct 16, 2006 4:40 pm

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.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41318
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby vilian » Mon Oct 16, 2006 8:23 pm

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.
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Postby vilian » Tue Oct 24, 2006 7:49 pm

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?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Postby Antonio Linares » Wed Oct 25, 2006 6:21 pm

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
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41318
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby vilian » Wed Nov 01, 2006 11:53 am

Antonio,

Thanks,

I am here counting the minutes while I wait.
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Postby vilian » Tue Nov 21, 2006 7:33 pm

Hi Antonio,

You already have a date to complete this development?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Postby Antonio Linares » Tue Nov 21, 2006 11:25 pm

Vilian,

It is almost finished. It may be ready for tomorrow, probably.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41318
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby Antonio Linares » Wed Nov 22, 2006 12:43 am

Vilian,

First tests are working fine: samples\ftpdir.prg:
Code: Select all  Expand view
// 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

Image

From XP:
Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41318
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Postby vilian » Wed Nov 29, 2006 1:54 pm

Hi, Antonio,

Congratulations, but when you intend to liberate this new version?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
vilian
 
Posts: 920
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil

Postby Antonio Linares » Wed Nov 29, 2006 5:42 pm

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.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41318
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Next

Return to FiveWin for Pocket PC

Who is online

Users browsing this forum: No registered users and 3 guests