4-25-2020
Pick a SINGLE File from Dialog box, Then upload it To a server on LAN Or Internet
I wrote this B4A To be very small, simple, & easy to understand on a beginners level
In Files Is the PHP script To handle single File upload And save As original filename
php creates And appends a...
Hi, i am trying to run a php script by using following code
Dim j As HttpJob
j.Initialize("", Me)
'j.PostString("http://saeedhassan.atwebpages.com/r.php", query)
j.Download("http://saeedhassan.atwebpages.com/r.php")
Wait For (j) jobdone (j As HttpJob)
If j.Success Then...
I am using following php script and it is returning an array to me. How can i get the data out of this array as i am using j as httpjob, but httpjob does not have a get array type of method.
$result = $conn->query("SELECT * FROM menuitems");
if ($result->num_rows > 0) {
$rows = array()...
Hi,
How can I trap "out of memory" error on httpjob before my app crashes when I try to upload large files, try and catch not works.
Is possible to check avaliable memory with file size to know if my app can upload or not?
When you make multiple requests with HttpJob, cookies returned from the server are kept across the requests. This might be useful in some cases, but in other cases it is a problem as the web server will not send a new cookie if it is already present in the request.
In the following example a...
Hi,
I can't seem to figure this out. When I call the following code, it hangs on the Wait For:
Dim strThisURL As String = "URL of my API"
Dim j As HttpJob
j.Initialize("" , Me)
j.Download(strThisURL)
Wait For (j) JobDone(j As HttpJob) ' Hangs Here
Dim MyDataList As List
Dim...
https://www.b4x.com/android/forum/threads/firebase-push-messages-fcm.81025/#content
I am using B4R 3.0, Esp8266 2.5.2, Esp32 1.0.4
Using this example on the Esp8266 works fine.
On the Esp32 the HttpJob/ParseResult function is not called.
The data returned from Firebase in...
I am trying to use HttpJob to pass city names to a MySQL database, but b4A always makes funny characters out of names like "Bácum" by turning it into "B%C3%A1cum". I don't want UTF-8 conversions which I can't seem to turn back into a recognizable city name with PHP. If I tell HttpJob...
I try to use the proxy settings for HttpJob.
This is my code:
SetSystemProperty("http.proxyHost", ProxyHost)
SetSystemProperty("http.proxyPort", ProxyPort)
SetSystemProperty("http.proxyUser", ProxyUsername)
SetSystemProperty("http.proxyPassword", ProxyPassword)...
Hi,
I'm using OkHttpUtils2 for downloading some images.
Problem: If I close the activity by pressing back button when it still downloading an image, the activity starts again automatically.
Don't know what is happening!!!
Do anyone have any solution for this problem?
Hi there
I'm using a rest api, apparently it returns a 204 "No Content" message however my wait for statement never gets to process this.
Step 1: Get Access Token and Save it (This works perfectly!!!)
'get the access token
Sub GetAccessToken() As ResumableSub
Log("GetAccessToken")...
Hi there
Im using HttpJob to read a rest api, this works (returns the results) and sometimes does not (returns the resource has been moved/does not exist). This is being used with wait for.
The end point I have been provided exists however the job.ErrorMessage is at times 'Not Found' and...
Hello,
I'm trying to interrogate a webservice using HttpJob with the code below, but it keeps displaying this message "Object context is paused. Ignoring CallSubDelayed: JobDone".
I have another function in this class which does basically the same thing and it works fine.
What am I missing...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.