Questions tagged [documentum-dfs]

DFS (Documentum Foundation Service) is a SOAP API for accessing the functionality of a Documentum Content Server

29 questions
4
votes
2 answers

DQL query to find active users count

Can someone suggest me a DQL query to find the count of active users in a repository in documentum. Below is the query I am using but it is not giving correct results, can someone suggest? select count(user_name) from dm_user u , dm_group g where…
4
votes
3 answers

Pros and Cons of DFC and DFS?

I am new to Documentum, I have to upgrade one code from Documentum foundation class to Documentum Foundation Services. Can someone provide the pros and cons of each, and good source of information to get started with it. btw, I am writing code in…
Mutant
  • 3,663
  • 4
  • 33
  • 53
3
votes
1 answer

soap4r custom headers

I've been working with soap4r and trying to use the SOAP::Header::SimpleHandler, I'm trying to get it to put a custom header on the outgoing message, but I can't work out how to get it to include attributes rather than as subelements: class…
Luke Chadwick
  • 1,648
  • 14
  • 24
3
votes
0 answers

Documentum error : [DM_SESSION_E_RPC_ERROR]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
3
votes
3 answers

alternative to dfc.properties

We're connecting to documentum server from Java progream (using dfc.jar) to pull the documents. In order to connect to the server, it requires us to make dfc.properties available in the classpath. We already have one master properties file, so want…
2
votes
1 answer

How to get the children of Virtual Documents in Documentum

I am trying to get the children of a particular virtual document by using the query below select * from dm_document in document ID('virtual document id') descend with any r_version_label='CURRENT' I am able to get the children for a particular…
2
votes
1 answer

Documentum error : [DM_STORAGE_E_NOT_ACCESSIBLE]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

Documentum error : [DFC_OBJPROTO_BAD_NUMBER_FORMAT]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

Documentum error :[DM_STORAGE_E_BAD_TICKET]

I am trying to get the content of all the documents (current version) from a documentum source using the following code IDfSysObject document = (IDfSysObject) session.getObject(new DfId(eachFileMetadata.get(some document…
2
votes
0 answers

How to get the content of a document in documentum

I am new to documentum,can anyone suggest me how to get the content of a document in documentum. I am using the following code document = (IDfSysObject) session.getObject(new DfId("some document id")); document.getContent(); I am getting the…
Akhil
  • 391
  • 3
  • 20
2
votes
1 answer

Error while running documentum code

I am getting an error while running the documentum code at: config.setString("primary_host", docbroker); in the below code: IDfClient client = DfClient.getLocalClient(); // getting the config object of local client IDfTypedObject config =…
2
votes
2 answers

Is there a way to listen to the upload events in the EMC's Documentum via .NET API?

i need to implement a windows service that connects to EMC's Documentum and receives an event every time a document is loaded. The event should contain the reference to the document itself. Is there a way to do it via API or do i have to do…
2
votes
0 answers

Documentum - Hashkey Differed between DFC and DFS

I am doing POC in Documentum. while trying to get the content of the XML files. hash key differed between DFC and DFS.. Reason is > this line is missing in DFS. Can…
Murali G
  • 178
  • 1
  • 6
2
votes
1 answer

Documentum DFS: Working with symbolic labels without interfering with system labels

I am working with EMC Documentum 6.6 using the DFS Java API. Currently I'm looking for a way to add and update symbolic labels to documents without interfering with system labels. For my understanding, all labels (system labels and symbolic labels)…
Florian Patzl
  • 174
  • 1
  • 13
1
vote
1 answer

Documentum Document Template Import issues

I'm using Documentum Composer to create a new XML application. After importing an XML template for the content from WebTop, I noticed that the templates are missing the Documentum-Specific attributes such as these: Expected:
It Grunt
  • 3,300
  • 3
  • 21
  • 35
1
2