peacemaker Expert Licensed User Longtime User Aug 22, 2024 #1 HI, All If some files are stored inside flash memory of device, and web-interface allows user to choose the filename - how web-server should get the file out by HTTP ? I mean allow user to download the file.
HI, All If some files are stored inside flash memory of device, and web-interface allows user to choose the filename - how web-server should get the file out by HTTP ? I mean allow user to download the file.
Erel B4X founder Staff member Licensed User Longtime User Aug 25, 2024 #2 1. If you can use B4J with a RPi or something similar, then it will be much simpler and work better. 2. Example of a very simple http server: https://www.b4x.com/android/forum/threads/esp8266-wifi-remote-configuration.68596/#content You should read the file and write it as the request response. Set the response content type to: application/octet-stream Upvote 0
1. If you can use B4J with a RPi or something similar, then it will be much simpler and work better. 2. Example of a very simple http server: https://www.b4x.com/android/forum/threads/esp8266-wifi-remote-configuration.68596/#content You should read the file and write it as the request response. Set the response content type to: application/octet-stream