I am sending some data (which has a seqId) to server continuously to a given URL via HttpJob request from mobile app, I need to get SeqID in response of each httpJob sucess, so that missing SeqId data can be resent to server.
dim j as httpjob
j.initilize("jobname", me)
j.Tag = SeqID
j.poststring/download/whatever
' Later in the JobDone or after the Wait for
if j.success = false then
log("Job failed for SeqID "&j.Tag)