-
Uninstalling Content Server v5.3
I had installed Content Server 5.3 on a Windows 2003 server box named server1, which was to be used as the master image for making multiple Documentum development servers. Subsequently, the box was cloned to several machines, named server2, server3, etc. Now I am trying to uninstall Content Server 5.3 from server5, and…
-
Performance tuning the content server.
I'm currently experiencing performance issues on the content server. Currently it takes me over 10 minutes to run the following DQL in iDQL on the Content Server, and it only returns 150 objects before erring out: SELECT * FROM custom_type WHERE FOLDER('/Cabinet/Folder/A', DESCEND) Are there indices I can set in the…
-
Can I dump a cabinet from a 5.3 SP6 repository and load it into a 6.5 SP2 repository?
I have a cabinet on a 5.3 SP6 repository that I want to dump out and load into a 6.5 SP2 repository. Is this possible using the dump and load tools provided?
-
Max value for maxReceivedMessageSize.
Hi all, I have a C# WPF application that calls DFS as a service (I made references to the DFS wsdl files on the content server box from my Visual Studio project). In it, I am executing a DQL query and returning a result set in the DataObjects collection of the dataPackage property. Every time I run this query, I am…
-
How do I count the number of open Documentum sessions?
I'm trying to find a way to count the number of DFC sessions I have open at any given time. Is there a way I can do this without logging into a WDK client, like DAM or DA? For example, is there a database table in MS SQL Server holds the session information so I can query it to determine the number of open sessions? Or is…
-
Why am I getting Invalid checksum for file "ucf-client-impl.jar" when accessing a file in DAM?
An user was using DAM and trying to edit a spreadsheet contained within. Every time they clicked on the file link to edit it, they got the following: Invalid checksum for file "ucf-client-impl.jar".com.documentum.ucf.common.install.InstallException: Invalid checksum for file "ucf-client-impl.jar".at…
-
How do I execute an alter type DQL via DFS as a service context?
In my C# application, I am calling DFS as a service, by making service references to the wsdl files on the DFS server. Next, I create an object of type PassthroughQuery and assign it the DQL alter type statement. Using a valid QueryServicePortClient object, I call its execute method and pass in my PassthroughQuery object…
-
D6 Developer Downloads
Where can I download the .NET Productivity Suite? Will there be developer versions of CTS released for developers to create custom translation plug-ins for?
-
How do I enquote strings in DQL?
I am trying to write a DQL statement to update a string attribute in Documentum 5.3 SP6: UPDATE custom_type OBJECTS SET object_name = 'A string that contain's a single quote' WHERE FOLDER ('/My Cabinet/My Folder') Of course the above statement fails, since there are 3 single quotes in the string. However, when I tried to…
-
How do I change the type of objects in my repository?
I have uploaded a large amount of objects as dm_document, but would like to change them to a custom type. Is there a job or utility I can run to do this for me? Or is the only option to delete these objects from the repository and reload them as the custom type?
-
Configuring the LDAP configuration object
I'm trying to set up the LDAP synchronization so I sync certain active directory group attribute (sAMAccountName) to the dm_group attribute group_display_name. However, when I create a new LDAP config object, it only lets me select dm_user as the subclass. How do I configure the LDAP synchronization job so that it maps…
-
Mapping a network drive to File Share Services (FSS) without the client.
I have FSS server installed on another box under the name fss_dev, and am trying to map a network drive to it from my own PC. I am using the following UNC path: \\fss_dev\docbasename. However, when I attempt to connect I get an error popup stating the mapped network drive could not be created because more data is…
-
Customizing the locator pages.
In all WDK applications, there exists a set of pages that let users select groups and/or users that they wish to give permissions to. These pages display the 32 character user or group name: basically the user_os_name attribute. I am trying to change the attribute displayed to the 80 character user_login_name attribute.…
-
Default the owner of any object to a group
Currently whenever I create objects in the repository, their default owner is my user account. I would like to change this so that the default owner will be the first group my user belongs to. How do I configure that? Or is this a customization?
-
Seeing the full username in add users/groups page of DAM
Currently my users have the option of adding in new users and groups and giving them permissions to objects by clicking on the Add users/groups link in the DAM permissions panel of the properties page of an object. They are taken to a page which shows a list of users and groups in the docbase by displaying their…
-
Only import active LDAP users into Documentum 5.3
I am on CS 5.3 SP6 and have sync'ed the users in my repository with all the Active Directory users via the job dm_LDAPSynchronization. However, this has synchronized inactive AD users into my repository, where I only want the active ones. How do I filter this so only active AD users are sync'ed with the repository? Is…
-
Is it possible to install CS 6.5 alongside CS 5.3?
I would like to build a test environment for Documentum 6.5, consisting of the following: CS 6.5 DFS 6.5 DAM 6.5 However, I only have 1 development server available, which already has Documentum 5.3 on it. Is it possible to install 6.5 alongside 5.3?
-
Customizing WDK Login component.
Is there a recommended approach for customizing the WDK Login component? I am trying to extend the WDK login component so I can override the authenticate method contained within. My class looks like this: public class CWLogin extends Login { protected void authenticate(...) throws PasswordExpiredException, DfException { }…
-
Design Pattern suggestion: Value Assistance Management without DAB.
I need help in determining if the below is a worthwhile submission to the design pattern library. Please review and help me. Providing non-technical end user ability to modify value assistance list of a custom attribute without giving them access to Application Builder. Problem: Due to the complex workflows and nature of…