Hi All,
I have a couple of doubts about "HttpUtils2 - Web services" library.
1) This approach is cross platform / language ?
I mean I can use it to call a web service implemented using php / asp or other platforms ?
2) Ho to do a call to a web service (for ex. that store a record within a remote db) ?
I mean:
Thinking about an existing web service that store some user data (filled by the user within the app) I can pass the user data to the web service using this code ?
Can I use the same approach also for iOS Apps ?
I have a couple of doubts about "HttpUtils2 - Web services" library.
1) This approach is cross platform / language ?
I mean I can use it to call a web service implemented using php / asp or other platforms ?
2) Ho to do a call to a web service (for ex. that store a record within a remote db) ?
I mean:
Thinking about an existing web service that store some user data (filled by the user within the app) I can pass the user data to the web service using this code ?
B4X:
'Send a POST request
job.Initialize("Job", Me)
job.PostString("http://www.mydomain.com/reguser.php", "firstname=John&lastname=Doe")
Sub JobDone
'Job done code ...
End If
Can I use the same approach also for iOS Apps ?