Questions tagged [filenet-content-engine]

FileNet Content Engine (CE) is central software component of IBM FileNet P8 platform. It is integral part of FileNet Content Platform Engine (CPE).

156 questions
0
votes
1 answer

FileNet P8: Add content to existing document without change ID

We have a process that adds documents to Filenet P8, but without content elements, that is, the document is created in the corresponding document class along with its properties, but it does not have any content element associated with…
0
votes
0 answers

how to extract document size from FileNet oracle database

I am new to FileNet. Is it possible for me to write a SQL statement to retrieve the file size of the document from FileNet oracle database ? What will be the field name be?
snowfrost
  • 35
  • 6
0
votes
0 answers

Spring Boot API to access FIleNet P8 via WSI. Setting User Context properly and first time works then fails with user context error

Using Spring Boot to create API to access FileNet documents. I have it working but ran into this issue with user context not saving. No problem getting Object Store and setting user context. First time I call endpoint it is successful. Subsequent…
0
votes
0 answers

Repeated JAAS call after connecting to filenet

I have an application running on a Liberty server, every time a request is made to Filenet through the eclipse console I get the following message over and over again: 2022/10/06 09:28:41:526-DEBUG-…
0
votes
1 answer

What Filenet P8 API will work with FileNet Cloud

I currently have an application that uses the P8 FileNet .NET api to store files in our company's on-prem FileNet server. The reference we add to our c# project is Filenet.Api.dll V. 5.111.0.470 . I believe it talks to the content engine. I'm being…
Dan G
  • 836
  • 11
  • 31
0
votes
1 answer

How to convert hexadecimal IDs (from Oracle/DB2) to GUID (FileNet standard)?

Searching for objects directly on the database used by FileNet (Oracle or IBM DB2) provides hexadecimal IDs, like this: F324E0C2A4AA884FACAAE6918AFFB163 How can I convert them in GUID standard, the one used by FileNet, using Java APIs? Example of…
Andrea
  • 6,032
  • 2
  • 28
  • 55
0
votes
1 answer

How to fetch the PropertyTemplate by symbolic name and appended to Custom Object class IBM FileNet CE API

How to fetch the PropertyTemplate by symbolic name and appended to Custom Object class through IBM FileNet CE API
raviteja
  • 105
  • 1
  • 8
0
votes
1 answer

How to set a List value with JScript

In FileNet, using FEM or ACCE, it is possible to use JScript in order to set attributes' values to an object. The official IBM guide provides this example (for…
Andrea
  • 6,032
  • 2
  • 28
  • 55
0
votes
1 answer

FNRPE2131090482E - Server is being initialized. Retry the operation

I am using Filnet 5.2.1. I have everything working fine for years. but suddenly today when trying to connect to process engine from workplace application I am getting the error : [FNRPE2131090482E]Server is being initialized. Retry the operation. …
0
votes
1 answer

How to retrieve all versions of a document using SQL queries in Filenet P8?

I'm looking for a way to retry and if needed remove all documents located inside the tree of a given folder root with all of their versions, not just the current one. The easiest way might be a SQL query with a batch deletion. Since previous version…
Amessihel
  • 5,891
  • 3
  • 16
  • 40
0
votes
0 answers

FileNet: TransactionRolledbackException while creating index on DB2 from FEM

I am trying to add an index to a document class' field, but - after some minutes - I receive the error TransactionRolledBackException. I suspect that's because this class already has thousands of created objects. In fact, whenever I try to create a…
Andrea
  • 6,032
  • 2
  • 28
  • 55
0
votes
1 answer

Getting a 403 Forbidden error on plugin request

I'm trying to fire a plugin request from my ICN plugin. The request goes as below. However, I'm getting a 403 Forbidden error from the server. Forbidden You don't have permission to access /navigator/jaxrs/plugin on this…
0
votes
1 answer

How to alias the ClassDescription property in a FileNet P8 saved search?

Given this SQL statement written in ACCE: SELECT This, D.ClassDescription, D.Id myId, D.MimeType myMimeType FROM Document D WHERE D.Id= '{00093471-0100-C09E-828F-6B22177A2922}' How do I properly alias the ClassDescription field?, it does…
Stephen Patten
  • 6,333
  • 10
  • 50
  • 84
0
votes
1 answer

IBM Content Navigator ContentList setting properties to row item

I'm trying to build a custom search and I followed the sample from redbook. However, instead of creating a new feature, I'm just modifying the current search behavior by modifying the query that gets executed on FileNet database. Based on the…