Hello,
I am trying to read docx file using Interop and file size is approximately 20MB. When I am reading file as iterating through paragraphs, I am getting exception as :
"Transition into COM context 0x57edd8 for this RuntimeCallableWrapper failed with the following error: System call failed. (Exception from HRESULT: 0x80010100 (RPC_E_SYS_CALL_FAILED)). This is typically because the COM context 0x57edd8 where this RuntimeCallableWrapper was created has been disconnected or it is busy doing something else. Releasing the interfaces from the current COM context (COM context 0x57ec68). This may cause corruption or data loss. To avoid this problem, please ensure that all COM contexts/apartments/threads stay alive and are available for context transition, until the application is completely done with the RuntimeCallableWrappers that represents COM components that live inside them."
I am using simple winform application and it is not multi-threaded.
Please help me as I am not able to resolve this error.