I have developed a component in Visual Studio using the following DLLs:
The component works fine within Visual Studio. However, when I create the component and publish the code in Integration Studio, I encounter the following error:
"An error occurred while saving the Extension: 'Exception of type 'System.OutOfMemoryException' was thrown.'."
Please provide a suitable solution for this issue.
Thank you.
Hi Yogesh Asopa,
This may occur because the Integration Studio process is running out of memory. Large or complex components can exhaust the memory available in Integration Studio.
To solve this error, split your component into smaller parts if possible. Instead of integrating all libraries into a single component, consider creating separate components for each functionality or library.
Thanks