I wanted to create a Documentum Form instance that will be used as part of a process/workflow data package. I need to do this from .NET productivity layer. So far, I am able start the process/workflow using 'StartProcess' method in IWorkflowService but the Form instance I'm trying to create gets created with 0 bytes as its size in my target repository. I'm using IObjectService Create method to create the form instance. The DFS services are remotely hosted.
My questions are:
- Is using ObjectService for form instance creation the recommended/correct way from .NET DFS?
- I know one can use IFormServices methods in Java to instantiate a form object from a custom Java code and it works perfectly. Is there a corresponding DFS class/service to IFormServices?
I appreciate your suggestions.