Questions tagged [filenet-p8]

FileNet P8 is an Enterprise Content Management System produced by IBM. This is a "software to help enterprises manage their content and business processes."

What it is ?

IBM FileNet P8 is a proprietary Enterprise Content Management platform (), that offer you document management system capabilities, coupled to a .

Also add record management tools and a frontend (Workplace, Workplace-XT and now Content Navigator)

FileNet P8 consists of different components working together:

  • Content Engine (CE) Works with documents and content.
  • Process Engine (PE) Manage workflows and BPM solutions.
  • Application engine (AE) Where the frontend lives
  • Content Search Engine (CSE) now Content Search Services (CSS) To manage queries and indexes.
  • Record Management (RM) In charge of the deletion and/or conservation process of the content.

See also .

External Links

257 questions
3
votes
2 answers

FileNet Content Engine - Database Table for Physical path

I realize this is possible with the FileNET P8 API, however I'm looking for a way to find the physical document path within the database. Specifically there are two level subfolders in the FileStore, like FN01\FN13\DocumentID but I can't find the…
Ryan Leeper
  • 53
  • 1
  • 3
3
votes
1 answer

Remove SID from documents - FileNet

We are using FileNet 5.1 and some other team has accidentally deleted a group say 'ABC' from prod. Now the documents who had 'ABC' applied are now having SID on them. We have now created a group with the same name & identified the affected GUIDs. I…
tiktok
  • 279
  • 2
  • 23
3
votes
2 answers

Credentials exception when running Filenet-based web app on Websphere Application Server

I have developed a REST service that retrieves data from the content engine storage. For simplicity I've created user account with read-only privileges and used it for CE authorization, using the following code: UserContext context =…
koss
  • 874
  • 1
  • 10
  • 22
2
votes
0 answers

SecurityException when running WorkplaceXT in local WebLogic

I need to run IBM Workplace XT to access a remote FileNet. I downloaded the installer and successfully created the .ear file. I also installed WebLogic 12.1.3 (development version for local testing). The deployment of web_client.ear runs fine, but…
2
votes
1 answer

How to get the count of documents for the object store using FileNet API's

I have more than a million documents in object store, and I want to know the count of documents for a specific time period. How can I get the count using FileNet CE api's The code I use is below, which gives me only a maximum of 200…
Salman
  • 21
  • 2
2
votes
1 answer

org.omg.CORBA.TRANSACTION_ROLLEDBACK: vmcid: 0x0 minor code: 0 completed: No

i am using Filenet 5.2.1 on Websphere 8.5.5.13 and when trying to connect to filenet connection point to retrieve work items as follows : workObject = (VWWorkObject) rosterElement.fetchWorkObject(false, false); I get the following…
2
votes
1 answer

Is a Web Service Runtime available in .Net Core

My team has written maintains a library that wraps functionality around a full framework .net .dll, specifically the IBM FileNet.Api.dll. We have been transitioning our library to use .net Standard and so far, all is well. After creating a .net core…
Rob
  • 161
  • 1
  • 1
  • 10
2
votes
3 answers

Fetch absolute or relative path using file object in IBM filenet

String mySQLString = "select * from document where documentTitle like '%test%' "; SearchSQL sql = new SearchSQL(mySQLString); IndependentObjectSet s = search.fetchObjects(sql, 10, null, true); Document doc; PageIterator iterator =…
2
votes
1 answer

Access FileNet Content Engine from servlet

I am trying to access IBM FileNet P8 V5 datastore from a servlet and need help in getting the WebSphere configuration correct. I have a fresh install of FN P8 on a RedHat 7 server with IBM WebSphere. I tried the example code given on…
2
votes
2 answers

CE Update Event: any way to pass before/after property values to a workflow?

I've configured a FileNet workflow subscription on Add, Update and Delete events. The workflow calls a Java component to send a notification message (to a third party). We would like to see "before" and "after" property values in the notification…
paulsm4
  • 114,292
  • 17
  • 138
  • 190
2
votes
1 answer

IBM Content Collector error receiving response after external WS call

In my current project using IBM Content Collector 4.0.1 SP5 with IBM Filenet P8 Content Engine 5.2.1 I need to collect files from file system and add them to a certain P8's object store. This issue is related and comes after this one. The WS…
abarisone
  • 3,707
  • 11
  • 35
  • 54
2
votes
2 answers

Acquiring retrieval name for latest version of a document in a DocumentSet using FileNet API

I have this piece of code: Folder fold = Factory.Folder.fetchInstance(os, folderPath, null); DocumentSet docs = fold.get_ContainedDocuments(); Iterator it = docs.iterator(); Document retr; try { while (it.hasNext()) { retr =…
2
votes
1 answer

How to deploy a Java Action Handler in IBM Filenet?

Filenet P8 Content Platform Engine 5.2.1 and WebSphere 8.5.5 are used in my current project. My goal is a creation Java Action Handlers. I have a jar file with needed functionality. I wanna store action handler as a CodeModule object. I can create…
2
votes
0 answers

FileNet P8 - Insert WHERE condition properties values in a Stored Search

In my current project using Filenet P8 Content Platform Engine 5.2.1 with WebSphere 8.5.5.3, Eclipse Mars 4.5.2 and Apache Maven 3.3.1 I'm trying to insert programmatically some where condition properties values in a Stored Search (starting from…
abarisone
  • 3,707
  • 11
  • 35
  • 54
2
votes
2 answers

How to get the property data type in FileNet P8

In FileNet P8, I need to get the datatype of the property of a custom class using JAVA API. Is there any way to do the same?
Arjun
  • 545
  • 1
  • 6
  • 17
1
2
3
17 18