A simple senario would be to send the contents of a field from one unknown computer to the hard drive of a single known computer. Each file sent would have a unique file name.
Any ideas?
What code would you use to send data over the internet?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
-
- VIP Livecode Opensource Backer
- Posts: 977
- Joined: Sat Apr 08, 2006 7:47 am
- Contact:
If the remote known computer is running an FTP server, it can be as simple as
However, if there is no FTP server running, things will be a bit more complicated, as you'll have to write the code for a server application to run on that remote known computer.
Jan Schenkel.
Code: Select all
put field "Content" into URL "ftp://user:password@example.com/uniquefilename.txt"
Jan Schenkel.
Quartam Reports & PDF Library for LiveCode
www.quartam.com
www.quartam.com
-
- VIP Livecode Opensource Backer
- Posts: 977
- Joined: Sat Apr 08, 2006 7:47 am
- Contact:
If the computer is a Windows server that has MS Internet Information Services (IIS) installed, it's as simple as ticking a box to activate the FTP server. However, there's a license cost involved, which you may want to avoid - in such case, FileZilla Server may be a good free/opensource alternative.
Jan Schenkel.
Jan Schenkel.
Quartam Reports & PDF Library for LiveCode
www.quartam.com
www.quartam.com