Questions tagged [opentext]

Open Text is a company based out of Waterloo, Ontario, Canada. It offers software for Enterprise Information Management.

Open Text provides products to organize and maintain storage of information on an enterprise scale.

The core product is Content Server 2010 (formerly Livelink). The system is implemented in a proprietary language called OScript (which is similar to JavaScript, LISP, SELF, Smalltalk-80). Content Server offers a SOAP and a limited ReSTful/JSON interface. Integrations exist with SAP, MSExchange, Lotus Notes, a variety of storage systems.

A complete list of opentext products can be found here: http://www.opentext.com/2/global/products.htm

143 questions
5
votes
0 answers

RedDot OpenText query to find out which user change a file?

I am learning RedDot OpenText CMS and wondering if there is a database query that I can run against the project data to select each file and find out who change which file recently? There should be a way to see the history of each file and the dates…
AAA
  • 2,388
  • 9
  • 32
  • 47
5
votes
1 answer

REST API to upload PDF's and index values to categories and Attributes in Open Text CS 10.5

I want to upload some documents to Open Text via the REST API's. I have an Open Text CS set up, but I am not able to hit any of the REST API's. Also, I need to know how to map my document attributes to that with the categories/attributes in Open…
Lipsy Singla
  • 51
  • 1
  • 4
5
votes
1 answer

Specification for Version2 Tiff annotations, stored in external markup file

I have old Eastman/eiStream/OpenText document repositories that store TIFF images. Some of the TIFFs are annotated, with the annotations stored in the TIFF header; these I can manage having found specs for the TIFF header layout and the layouts of…
Binary Worrier
  • 50,774
  • 20
  • 136
  • 184
4
votes
5 answers

Preserve original file date when uploading to OpenText LiveLink

When uploading documents to LiveLink (we're using 9.7.1) the original create data on the file is changed to the date/time the file was uploaded. This make sense, but is there an easy way to upload files and preserve the file create date? Third party…
matt eisenberg
  • 183
  • 6
  • 21
4
votes
2 answers

FileInfo.OpenText() Fails To Read Special Characters E.G. üò°

Have some text files that display many characters as � in TextBox and TextBlock. How can I properly read and display these files in .NET WPF? File read where fi is a FileInfo. fileText = fi.OpenText().ReadToEnd(); In WPF I get the � character for ü…
paparazzo
  • 44,497
  • 23
  • 105
  • 176
3
votes
1 answer

Upload documents with OPENTEXT REST API not working

I'm new to the OPENTEXT Rest API and while I'm able to authenticate/create folders using it, I can't get the document upload to work. The following is the code I've been using: import java.io.BufferedReader; import java.io.File; import…
user1803311
  • 101
  • 8
3
votes
4 answers

How can I add a new document to Content Server 10.5 using the REST api

How can I add a new document to Content Server 10.5 using the REST api? I am following the Swagger docs for creating a node, but it is not clear how I attach the file to the request. Here is (roughly) the code I am using: var folderId = 2000; var…
meataxe
  • 969
  • 13
  • 33
3
votes
3 answers

ECM : Migration of documents referencing other documents

Our company decided to move from SharePoint Documents Libraries to OpenText LiveLink for Enterprise Content Management (ECM). We faced the following problem : We have thousands of documents that reference each other currently in SharePoint. When we…
Morano88
  • 2,047
  • 4
  • 25
  • 44
2
votes
1 answer

Java API for OpenText eDocs/Hummingbird

Does anyone know if there is a java API provided for OpenText eDocs (formerly Hummingbird DM)? Our experience in using it in our webapp is limited to client-side access using ActiveX, we'd like to know if there's a way to access the API on the…
Roy Tang
  • 5,643
  • 9
  • 44
  • 74
2
votes
1 answer

Consume Opentext Rest API using Groovy

I need to create a group in opentext using their Rest API using Groovy: So I tried to use this code @Grab(group='org.apache.httpcomponents', module='httpclient', version='4.5.2') import groovy.json.* import…
maryem neyli
  • 467
  • 3
  • 20
2
votes
1 answer

Opentext content server unable to create/connect to database

I am installing fresh copy of opentext 16.2.8, and when I try to create new database it keep on failing with the following error. I have installation of SQL Server 2016 standard Error: Could not connect. ----> Error stack ----> 1) E675217410:ODBC…
fitnet
  • 93
  • 10
2
votes
1 answer

Cypress.io: Server Error | 404 - File or director not found

I'm currently trying to automate the test for a pretty big webapplication (DMS) Document Management System. To explain the system a little bit: There is a loadbalancer which connect to one of two frontends. To be sure that will be no problems in my…
WasteD
  • 758
  • 4
  • 24
2
votes
2 answers

How do I clear up Documentum rendition queue?

We have around 300k items on dmi_queue_item If I do right click and select "destroy queue item" I see the that row no longer appears if I query by r_object_id. Would it mean that the file no longer will be processed by the CTS service ? Need to…
Allende
  • 1,480
  • 2
  • 22
  • 39
2
votes
1 answer

Deleting top 100 objects in DQL statement

I need to delete the first top 100 objects from a dm_document table. I already tried: DELETE dm_document objects where object_name='TestObject' enable (RETURN_TOP 100); DELETE dm_document objects where r_object_id in (select r_object_id from…
MrPapaye
  • 23
  • 1
  • 3
2
votes
2 answers

How to pass Category Attribute value from REST API

I am able to upload files or create node through the Content server(16.0.3) REST Api (POST: api/v1/nodes). But How do I pass Category Attribute value while uploading file to opentext Content server.. Because as per DeveloperGuide there are only 3…
too_cool
  • 1,164
  • 8
  • 24
1
2 3
9 10