httpjob

  1. D

    Android Question HttpJob not connecting to Localhost

    I have a weird error and hope someone can point me in the right direction. I have a backend API which I am running on localhost for Dev purposes. The API works perfectly when I test it using Postman. It also used to also work perfectly when I was using B4A. Unfortunately, it just stopped...
  2. Lakhtin_V

    Android Question Older versions (SDK19) conflict with the web SQL server

    Hi! In my application on new versions of android everything works. An error appeared on the old sdk19. Previously, in their other applications, everything worked well for both old and new ones. Help deal with the problem java.lang.NullPointerException at...
  3. N

    Android Question trouble implement Httpjobs

    I want to send json and receive json from url. May some genius can tell where wrong oh my code, Thanks. This my json url curl --location --request POST 'http://192.168.5.80:9090/v1.0/Login/GetLogin' \ --header 'Content-Type: application/json' \ --data-raw '{ "Hp":"08123456"...
  4. P

    Bug? httpjob bug and cache

    I guess i found a bug on httpjob, and found out that httpjob also caches information,which in 2016 @Erel said it doesn't The specific error was: Error occurred on line: 292 (HttpJob) java.io.FileNotFoundException: /data/user/0/b4a.example/cache/1: open failed: ENOENT (No such file or...
  5. king_mkv

    Android Question post requests in b4a

    Hello my friends I want to send a request in Basic Four Android and show a response to the user, depending on the response I get from the server. I used to work with Python, and there it was very easy to use a site to convert curls to Python commands. Is there a way I can request a server with a...
  6. N

    Android Question HttpJob headers

    Hello, I have searched the forum but haven't found anything related. I would like to set specific payload encoding. what is the default encoding used when there is a payload? Also, how can I get headers? Dim j As HttpJob j.Initialize("", Me) j.PostString(URL, "&id=3") ''get headers...
  7. HassanProgrammer

    Android Question Secure connection to servers and hosts

    Hello, How did Telegram, WhatsApp, YouTube, etc. establish their security? A hacker can decompile my program and gain access to my links or IP server and abuse it. For example, send thousands of requests to my server and host in a row. Or enter my api link in the browser and see or change user...
  8. HassanProgrammer

    Android Question Download the activity and start it

    I want to upload an activity on the server and download it from the server in the main activity and then start it. How do I do that?
  9. H

    Android Question What is the effect of httpJob if placed inside the function?

    hello, I understand that an httpJob is a resumablesub which means other functions below it will execute even it is not finished except when placed inside if job.Success statement. But, what is the effect of httpJob if placed inside the function? Is there a difference if the function returns a...
  10. H

    Android Question How to control the flow of the HttpJob?

    Hello, With HttpJob, we write code like this: Dim j As HttpJob ... Wait For (j) JobDone(j As HttpJob) If j.Success Then foo() else ... end if bar() This will run the bar() even the foo() is not finished. Is there a way to let the foo() finished before the bar() begins? Thanks!
  11. W

    Android Code Snippet Conversion from CUrl to B4A

    It is quite convenient to upload images to public cloud server and share the image link to other people rather than share the real image files directly! The following code snippets showed how to upload and search images by CUrl command (provided by: https://apidocs.imgur.com/) and by B4A syntax...
  12. Abdull Cadre

    Share My Creation [Free] Weather App

    Building a Weather App One of my recent projects required me to build a weather app that would work with an API of my choice. This was my first introduction to working with a weather API, so I knew there was going to be a steep learning curve, but I was excited about the chance to finally get...
  13. D

    B4J Question Error on request inside a server Handler (java.lang.InterruptedException)

    Hello! I'm gettin this error but i have no clue of what's happening because it works good for days before happen. I suspect that is caused by a request that I make inside a handler but I'm not sure. java.lang.RuntimeException: java.lang.InterruptedException at...
  14. J

    Android Question HttpJob and Sending Message to waiting Queue ...

    Hello, We have a problem with the HttpJob: The JobDone never runs, and the log contains the following message: "sending message to waiting queue of uninitialized activity (submitjob)" my code : Dim job As HttpJob job.Initialize("", Me) job.Download("https://www.google.com") '...
  15. I

    iOS Question Extract HTTP Response on Error

    Hello There I am using HTTPUtils ( https://www.b4x.com/android/forum/threads/46565/#content ) and so far all is good until I tried to extract the response block returned OnError by the server ( I was unable to find a way to do it unless I am missing something). Sub hc_ResponseError (Response...
  16. D

    Android Question break jobdone

    Hello, everyone I want to know if there is a way to break jobdone from another function. At my jobdone the waiting panel is called (just download process) and there is a button when I click on which I need to stop executing jobdone, can this be done?) I use HttpJob I hope I made myself clear...
  17. A

    Android Question Problem sending text to server in trage sdk higher than 26

    Hi, when I put the trage sdk from the manifest to more than 26, I can not send anything to the server via httpjob with the poststring. I also added the following code to the manifest but it did not work: SetApplicationAttribute(android:usesCleartextTraffic, "true") What is the solution to this...
  18. A

    Android Question connect to mobile connection for HTTPJob while connected to ESP8266

    I replied to an exisiting thread but knowing this forum, it is better to start a new thread. I have an ESP8266 connected to the Wifi port of the telephone. This ESP8266 does not have an internet connection... (we are in the field with the application). The android app is gathering information...
  19. B

    Android Question Use Httpjob to build your own B4A library

    Hi, I want to create a library using the standard class where a file should be downloaded, so I decide to use httpjob in my library, but I do not know how to initialize httpjob because by giving Me the target input in the class, the force program will close. Give. Please help. Thankful
  20. Marcos Alves

    Android Question HttpJob and Raw Data

    Hello community, I have a doubt here... Using httpJob I know how to send a POST using parameters map (postMultiPart) and even to send a file. But now I have a post request listed in PostMan constructed in this way: Link...
Top