When large file being processed using launch interactive activity, I’m getting below mentioned error from UiPath.
There was an error writing to the pipe: Unrecognized error 232 (0xe8)
Could you please help to solve this problem. File contains 40 columns and 500 rows.
what kind of invoke is it? Is it isolated? If yes, there is a limit, WCF maximum default message size (65536), and the channel communication between executor and service may fail with that error.
As a workaround: Increase the maximum message size. In UiRobot.exe.config create a new binding configuration for ExecutorService endpoint. E.g.: ’ <binding name=“ExecutorServiceBinding” maxReceivedMessageSize=“2147483647” receiveTimeout=“00:10:00” sendTimeout=“00:10:00” / > ’