Documentum Foundation Class is the primary Java interface library for EMC's Documentum.
Questions tagged [dfc]
68 questions
0
votes
1 answer
Documentum ERROR ~ IO Exception attempting to acquire interprocess lock
I am getting below exception when trying to fetch a folder content using DFC API
ERROR ~ IO Exception attempting to acquire interprocess lock
java.io.FileNotFoundException: /bea/documentumCache/cache/6.7.1000.0027/bof/myDocBase/content.lck (No such…

Sajjad Ahmed Paracha
- 87
- 2
- 16
0
votes
2 answers
Comparing Documentum Docbases
I would like to know is there a way to compare two doc bases of Documentum to ensure that they are same. For example, to compare the child-parent relationship for an object in 2 doc bases.
Any pointers towards this is much appreciated.
Thanks in…

Ajai Gopal
- 189
- 4
- 12
0
votes
2 answers
[DM_API_E_BADATTRNAME]error: "Bad attribute name 'str_en' for document/object."
I am receiving the following error in my application:
Error Description: Failed to prepare the search result.
Error Message: [DM_API_E_BADATTRNAME]error: "Bad attribute name 'str_en' for document/object."
Technical trace details:…

EdvardG
- 131
- 2
- 10
0
votes
1 answer
Documentum 6.5 SP3 error with Tomcat
I am getting this error while invoking Documentum in my application.
java.lang.NoClassDefFoundError: Could not initialize class com.documentum.fc.client.DfClient
The application server is Apache Tomcat
We are upgrading from Documentum 5.3 sp4 to…

Sanjay
- 1
0
votes
0 answers
DFC - set a different filestore before save
I have a thread who's updating a map where all the available filestore are declared.
To be available, a filestore must be "online" and his size must be < 500MB. If the filestore reach the 500MB limit, he's turn "Read Only" and a new one is created.…

Greezer
- 231
- 1
- 5
- 19
-1
votes
1 answer
documentum Session getting error
import com.documentum.com.DfClientX;
import com.documentum.com.IDfClientX;
import com.documentum.fc.client.IDfClient;
import com.documentum.fc.client.IDfSession;
import com.documentum.fc.client.IDfSessionManager;
import…

rameshwar.k.rao
- 11
- 1
- 2
- 6
-1
votes
1 answer
Queries in DFC and WDK in documentum
I have below queries in DFC and WDK:-
1) TBO is type base objects and is for specific object type in documentum. SBO is for global use. Can we make a SBO code to act like a TBO, if yes then how? How can I make my SBO specific for a particular object…

ScriptLearner
- 163
- 3
- 16
-2
votes
1 answer
How to DFCLib library in VB.Net
I want to convert object to Idfdocument in VB.NET
Id = m_DfClientX.getId(itemID)
'itemID string
If (Id IsNot Nothing) Then
sysObj = CType(session.getObject(Id), IDfSysObject)
nesne = sysObj.getContent()
Dim doc As IDfDocument = CType(nesne,…

Demet Özturan
- 1
- 2