I encountered a problem in development, and I don’t quite understand why this problem arises and how to modify it.
【18.4.0+Branch.master.Sha.b805b316b1c47ae06c0fe7e619b9c9f96e9e774c
Message: Could not retrieve the result of the job execution. This might be because a message was too large to process.
Exception Type: System.Exception
An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is:
System.Exception: Could not retrieve the result of the job execution. This might be because a message was too large to process.】
Could you give more context? What are you trying to achieve and when exactly does the error appears?
Also, are you using the Orchestrator Community Edition?
Please also rename your topic title to properly describe your issue.
Version of UiPath Studio is 2018.4.0, the workflow not connected to Orchestrator.
An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is: System.Exception: Could not retrieve the result of the job execution. This might be because a message was too large to process.
Please check and let me know if any info required.
It is really difficult to answer without more information about what is happening inside your workflow. What activities are you using and what are you trying to achieve?
At which point in your workflow does the error message pop up?
When in your process does it happen when you Debug the process step by step?
Even in Debug also the error appears, The error box appears after the completion of the workflow. The workflow contains Outlook activities, save attachments, do google ocr, do basic operations to split the string, and writing to excel file. I am using arguments instead of variables. The outlook mail output is defined as variable not as argument. This is the complete workflow.
First of all, I’m sorry for the slow response.
I’ve sorted out the reasons for this problem.
Because one of my output Argument types is DataTable and I didn’t receive it.
Thx.
Thanks @caydel, your inputs helped!
I faced the same issue. My scenario where it failed was, a huge file was being read using Read PDF and was written into console using writeline activity. The issue got resolved once i removed the write to console.
Is there a limit on the PDF size? Cause i am getting this issue when I am reading a pdf to txt. The size of the pdf is 1.5 MB. It is a system generated PDF and has about 250 pages.
I am getting the same Error and I am having a hard time figuring out which of my arguments is causing the memory issue. How did you resolve your issue? I do have a few datatables that I am passing in and out, do I clear all my tables prior to ending?