Page 1 of 1
File transfer
Posted: Fri Mar 10, 2006 4:27 pm
by Richard Chidiak
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
Posted: Fri Mar 10, 2006 6:00 pm
by Antonio Linares
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> )
Posted: Mon Mar 13, 2006 7:58 pm
by Richard Chidiak
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
Posted: Mon Mar 13, 2006 8:39 pm
by Antonio Linares
Richard,
good
Re: File transfer
Posted: Tue Jan 08, 2013 11:38 am
by Antonio Linares
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
Re: File transfer
Posted: Sat Jan 12, 2013 7:03 am
by Richard Chidiak
Antonio
No we couldn't make it work , we made a workaround with ftp transfer.
Richard