Tagged Questions
Documentum Foundation Class is the primary Java interface library for EMC's Documentum.
2
votes
1answer
209 views
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?
2
votes
1answer
183 views
documentum instruction
Documentum sample code is never deeply commented, so my question is:
What does this line mean?
IDfQuery query = DfcUtils.getClientX().getQuery();
1
vote
1answer
39 views
Documentum user creation using Active Directory
Is there any way that we can programatically create a Documentum user by using Active Directory information? (I have very little knowledge on ADT and know that it stores user info thats all.)
1
vote
1answer
43 views
How to create multiple users in Documentum
Is there any way to create 30+ user with same groups and ACL name in one shot?
I have tried using DQL and make script, but even that doesn't run in one shot in Documentum DQL editor.
Does anyone has ...
1
vote
1answer
44 views
Is it possible to intercept Documentum API calls?
I have a need to handle different publication events in Documentum (DFC 6.5). When content is published, I would like to fire a JMS message back to my application.
Is there any way to intercept the ...
1
vote
1answer
151 views
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. ...
0
votes
0answers
61 views
Include Version Labels when exporting via DFC (Documentum)
I am exporting a document that has the following version labels: "V1, CURRENT, 1.2"
But my exported XML document only includes this text: dctm:version_label="CURRENT".
Anyone know how I can export ...
0
votes
2answers
324 views
Creating a folder with DFC (Documentum)
I'm facing a strange problem.
All I want is to create a new folder with the DFC. But when I execute the code (JUnit or inside the Application) no folder is created and surprisingly no exception is ...
0
votes
0answers
52 views
Documentum Replica Object error Class com.documentum.generated.ReplicaObject or one or an ancestor must have ReplicaClass annotation
I'm having a problem with Documentum 6.5 where we try to get an object. This object is a replica from other object.
When I do:
IDfSysObject dcmObject = (IDfSysObject) session.getObject(new ...
0
votes
1answer
164 views
Documentum groups and subgroups lost when build is performed
Here's our dev process. We have a dev Documentum environment where we make our changes, and then import those DFC changes into our docbase using Documentum Composer.
When the build is performed, we ...
0
votes
2answers
165 views
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 ...
0
votes
1answer
705 views
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 = ...