N nio New Member Aug 25, 2019 #1 is possible to build an application that receives data from an html form via internet
Erel B4X founder Staff member Licensed User Longtime User Aug 26, 2019 #2 Yes: Embed an Http Server in your Android Application Whether it is practical or not is a different question. In order to do it over the internet the device will need to be connected to a local network with port forwarding configured properly. Upvote 0
Yes: Embed an Http Server in your Android Application Whether it is practical or not is a different question. In order to do it over the internet the device will need to be connected to a local network with port forwarding configured properly.
E emexes Expert Licensed User Aug 26, 2019 #3 Depending on what you need to do, perhaps an online service like this might do the job: www.esurv.org www.jotform.com Another little trick is that if you have webhosting that logs all http requests, then you can have your users access links that include the form information eg: www.yourhosteddomain.com/thankyou.html?additional;info;goes;here;123-fourth-street;fifthville;6789 and then later retrieve the information from the log. You'd need to check out the security implications, though. Upvote 0
Depending on what you need to do, perhaps an online service like this might do the job: www.esurv.org www.jotform.com Another little trick is that if you have webhosting that logs all http requests, then you can have your users access links that include the form information eg: www.yourhosteddomain.com/thankyou.html?additional;info;goes;here;123-fourth-street;fifthville;6789 and then later retrieve the information from the log. You'd need to check out the security implications, though.