Make Boron as Simple web Server to store files

Hello Everyone,

I am working on little project which has boron and sd card for storage.

In real rime application this hardware is placed in some remote area and born has sim so it connected with gsm network.

Now in my application there is some files stored in sd card and boron fetch that file fron SD card and process as required.

Here is my main issue occures as i say my hardware is placed in some remote area so if i need to change/update or delete some files in SD card so i have to go there and remove sd card plug into my laptop save/delete files and again plug sd card into boron hardware which is not possible in real time scenario.

So i am searching out that how can i make boron as simple web server which has upload, delete and list files from sd card virtually.

i find one example which is same application as i need but it is working on esp32 they make esp32 as webserver and do this task.

i need that type of example or library which work for me in boron.
it is possible?

Anyone have any idea or solution.

Thank you.

It is not possible to do this. There is no TCP server for cellular devices and the cellular network does not allow incoming TCP connections.

The normal way is to periodically stream data up from the device.

An alternative is to have a function call that requests that the device send data to some external service on demand. This could be data files or a list of files, for example, but the TCP connection or stream of published events must be initiated from the device.

Thank you for the clarification @rickkas7

I, now understand that incoming TCP connections aren't supported on cellular networks, and the usual approach is to have the device periodically stream data.

Thank you again for your assistance.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.