Fabrice La Active Member Licensed User Longtime User Mar 20, 2014 #1 I try to create an aplli where one device will send file to 10 devices. I started from the FileTransfer tutorial I know the 10 IP address of the devices. How, by only click once on one button, to send the file to all the devices ?
I try to create an aplli where one device will send file to 10 devices. I started from the FileTransfer tutorial I know the 10 IP address of the devices. How, by only click once on one button, to send the file to all the devices ?
giga Well-Known Member Licensed User Longtime User Mar 20, 2014 #2 Have you thought of a central location that all the devices could sync with to retrieve the file? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Mar 20, 2014 #3 Consider using HttpServer library to implement a small server on the device. It will be much simpler. Your other option is to connect to each of the devices and send each one of them the file (with 10 sockets and 10 AsyncStreams). Upvote 0
Consider using HttpServer library to implement a small server on the device. It will be much simpler. Your other option is to connect to each of the devices and send each one of them the file (with 10 sockets and 10 AsyncStreams).