B4J Question Abnormous behavour in okhttputils

kostefar

Active Member
Licensed User
Longtime User
Dear All,

I have two b4j windows open which are running in debug mode, not always at the same time.
One is scraping some data off a website, and the other one is connecting to a completely different place.
So sometimes it´s the last one that´s just running, but it´ll get the incoming last data from the other app, even when it´s closed, in jobdone:

B4X:
Log (job.JobName & " " & job.GetString)

If the other app is running at the same time, the data being logged in the 2nd app changes in accordance with what was last received by the first app.
I checked in fiddler if a request is being sent on the network when the first app is closed, but nope. It seems to be sitting in the buffer of jokhttputils.
Is there any logic behind this, and are there ways to stop it from happening?
I tried btw to make sure that httpjob.initialize is set to different names in the two apps, as well as not using the same name for the httpjob. One uses httpjob, the other one httpjob1 now.
 
Top