Hello folks!
In my application I have a local database in the android tablet that needs to be updated from a web browser on a remote desktop.
There will be a form to be filled by the user and when he submits this form (pointed to tablet IP in the http source code) the tablet will read the fields and write them to variables in order to update or insert the values to my local database.
I can establish comunication between tablet and desktop on a wifi network but instead of http I made it on a serial terminal to avoid the crap from headers and http codes, but it was just a test...I really need to use a friendly interface at the desktop end.
On the other hand I must send information to the desktop in order to insert values to its database but I did get to do it using httputils2 as following:
job.PostString("http://10.1.1.4", "filed1=" & box1.Text & "&filed2=" & box2.text). Is this the rigthest way to do it ?
Dont have even a clue on how to start!:sign0104:
In my application I have a local database in the android tablet that needs to be updated from a web browser on a remote desktop.
There will be a form to be filled by the user and when he submits this form (pointed to tablet IP in the http source code) the tablet will read the fields and write them to variables in order to update or insert the values to my local database.
I can establish comunication between tablet and desktop on a wifi network but instead of http I made it on a serial terminal to avoid the crap from headers and http codes, but it was just a test...I really need to use a friendly interface at the desktop end.
On the other hand I must send information to the desktop in order to insert values to its database but I did get to do it using httputils2 as following:
job.PostString("http://10.1.1.4", "filed1=" & box1.Text & "&filed2=" & box2.text). Is this the rigthest way to do it ?
Dont have even a clue on how to start!:sign0104: