FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC File transfer
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
File transfer
Posted: Fri Mar 10, 2006 04:27 PM

How can we transfer automatically (ftp like) a file to a computer on a wifi network.

I know the computer's IP

Is there any other way than using sockets ?

Tia

Richard

http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
File transfer
Posted: Fri Mar 10, 2006 06:00 PM

Richard,

If the target computer is sharing a folder, then you may directly write on such folder, i.e.:

MemoWrit( "\name\shared\file.txt", <cText> )

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
File transfer
Posted: Mon Mar 13, 2006 07:58 PM
Antonio Linares wrote:Richard,

If the target computer is sharing a folder, then you may directly write on such folder, i.e.:

MemoWrit( "\\name\shared\file.txt", <cText> )


Antonio,

Good idea.

We can access the server this way. i still have some security issue, the server is prompting for a user login and password every time we start again the pocket pc ! we are trying to fix that one, replying OK to an empty password does the job and writes on the shared folder in the network. This makes FWPPC access to a network magic !

This is a snapshot of the testing code

#include "C:\FWPPC\INCLUDE\FWCE.ch"

function Main()
LOCAL WTEXTE,cfile,wtexte

cfile := "\\serveur\c_serveur\testhp2.txt"
nHandle := fCreate( cFile )

WTEXTE := "ligne 1"
FWRITE( nHandle, WTEXTE + CRLF )

WTEXTE := "ligne 2"
FWRITE( nHandle, WTEXTE + CRLF )
fClose( nHandle )

return nil


:-)

Richard
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
File transfer
Posted: Mon Mar 13, 2006 08:39 PM

Richard,

good :)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: File transfer
Posted: Tue Jan 08, 2013 11:38 AM
Richard,

the server is prompting for a user login and password every time we start again the pocket pc ! we are trying to fix that one


Were you able to find a solution for that ? thanks
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
Re: File transfer
Posted: Sat Jan 12, 2013 07:03 AM

Antonio

No we couldn't make it work , we made a workaround with ftp transfer.

Richard

http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013

Continue the discussion