I am using Microsoft OCR in a loop to extract content from PDF. This cause my UiRobot to Crash randomly . With reference to the issue addressed earlier in this forum “Exception thrown: Executor ended with exit code -1073741819 - OCR Loop - #2 by extremihai”. I tried running the UiRobot by using the OCR extraction activity in separate work file, but the issue is not resolved .
Please let me know the work around at the earliest.
Device Details : UiPath Developer Version : 2016.1.5999 Microsoft Window 7 Enterprise 32-bit .NET 4.0.30319.42000
Isolated will run the invoked in a separate system process. If that process crashes the main will still run as long as you have the try-catch in place.
It should look like this:
Main Workflow {
Loop {
Try {Invoke Scrape Isolated}
Catch {}
}
}
In V8 it was called UnSafe if I remember correctly.
If that’s also not present, could you share a screen clip from InvokeWorkflowFile you’re seeing?
(I’d suggest an update, but since you’re using V8 still there’s probably a good reason for it).