dfc

How do you move **all** versions of files from one folder to another in Documentum using DFC

This piece of code moves all current versions of files from one folder to another but leaves all older versions unmoved. (Context is java code of DFC accessing Documentum.) String strObjId = versionColl.getString("r_object_id"); com.documentum.fc.common.IDfId curObjectID = new DfId(strObjId); IDfSysObject curObj = (IDfS...

documentum instruction

Documentum sample code is never deeply commented, so my question is: What does this line mean? IDfQuery query = DfcUtils.getClientX().getQuery(); ...

Graceful way to exit a dm_job ? System.exit()?

If I want to properly exit a documentum java job (if params are invalid for example), should I use a system.exit() or is there another way to do it. As far as I know system.exit closes the virtual machine, does it have an effect on other jobs running? ...

Log out of Documentum Server

Iam a beginner in using DFC . I have an windows application that uses Documentum APIs to checkin Checkout documents into Documentum Content Server 6.5.1 .I use DFS 6.5.1 to interact with the server. Now I need to log out of the session. How is that possible.If i need to fire a DQl, what is that ? ...

How to set host and port in full java without dmcl.ini

Using Documentum DFC, I would like to set up a docbase connection without using a dmcl.ini. How can I do such a thing? ...