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
File transfer
- Richard Chidiak
- Posts: 946
- Joined: Thu Oct 06, 2005 7:05 pm
- Location: France
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Richard Chidiak
- Posts: 946
- Joined: Thu Oct 06, 2005 7:05 pm
- Location: France
- Contact:
Antonio,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> )
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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: File transfer
Richard,
Were you able to find a solution for that ? thanksthe server is prompting for a user login and password every time we start again the pocket pc ! we are trying to fix that one
- Richard Chidiak
- Posts: 946
- Joined: Thu Oct 06, 2005 7:05 pm
- Location: France
- Contact:
Re: File transfer
Antonio
No we couldn't make it work , we made a workaround with ftp transfer.
Richard
No we couldn't make it work , we made a workaround with ftp transfer.
Richard