I have a question on ReFramework. I’m using queueitem as my transactionitem, i put my sequence on uploading my queueitem to orchestrator on the Initialization State First run, in case I encounter an error and I add a retry mechanism, will it upload again the queueitem since it will loop again to initialization state once it encounters system exception error?
I’m sharing a sequence with you. With this sequence you can delete you queueItems from queue, if your previous queue is already filled. If you have any question, feel free to ask. (Dont forget to change GetQueueItem activity’s properties with get only new queue items.)
Yes, items in the Init state are usually run multiple times if there is an error. But there is a way to have an item created only one time in the Init state. You could put that code somewhere like “First Init”, where it reads all the config files. That would mean your code would only create one queue item in the Init state.