Hello,
when the row is modified, it’s marked and DP send data to server.
if the response is fail, then the row is still marked.
How to setting for DP resend this marked row automatically?
Thank you.
Hello,
Moreover, after the response is fail, even if I use myDP.sendData() manually, nothing happens.
How to make DP send that row again?
Thank you.
DataProcessor will resend row if it will be changed ( through editing for example )
DataProcessor doesn’t resend data automatically to prevent constant server flooding in case of some server side errror.
you can use
dp.setUpdated(id, true)
dp.sendDate();
to resend the row with ID == id