I am using PostString in B4A to send JSON Strings to servers. After some issues with url encoding this is all working well.
I am now trying to upload bitmap files from the tablet (stored in File.DirRootExternal) to the servers. So far I have been using PostFile ie
Job1.PostFile("
http://.....aspx",File.DirRootExternal,"file.bmp")
We can see something hitting the pages but struggling to interpret it at the server end. I am working with two different developers; one using vb.net and the other .asp. Both are having the same issues.
Should I forget PostFile and use the http.MultiPartPost...I have read a forum thread and it looks like I might get a bit more control like attaching Key/Value pairs to attach some information about the files, but it also looks far more complicated than Postfile?