Questions tagged [filenet]

FileNet was a company that developed software in the area of Enterprise Content Management (ECM). It was acquired by IBM in 2006.

What it is ?

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

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

FileNet consist on 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 .

Alternatives

External Links

149 questions
8
votes
2 answers

Apache ManifoldCF. Unable to create repository connection to FileNet

I am trying to connect to FileNet from ManifoldCF without any success. The error I got is Connection status: Connection temporarily failed: Connection refused to host: 127.0.0.1; nested exception is: java.net.ConnectException: Connection refused:…
duvo
  • 1,634
  • 2
  • 18
  • 30
6
votes
1 answer

Filenet P8 5.1 and 5.2 deleting/replacing document content with new content

One of the requirement is to update the document with new content also delete the old document. document Id and other properties of the previous document should be pointing to the new document with new content. There any sample snippet to do the…
Shiv Gopal
  • 539
  • 2
  • 10
  • 21
4
votes
1 answer

Filenet Change Document Class

I'm trying to change class for a given document and below is the code that I used Document p8Document = Factory.Document.getInstance(p8ObjectStore, oldDocumentClassName, new Id(documentId)); p8Document.changeClass(newDocClassName); …
bajji
  • 1,271
  • 3
  • 15
  • 37
4
votes
2 answers

How should i proper page queries in IBM FileNet?

Are there any methods to page queries in FileNet? I have a grid control with paging so i need to get count of elements total in query and possibility to get in example page 3 of results(with any page size). I found only TOP operator, but are there…
Horosho
  • 647
  • 1
  • 8
  • 22
4
votes
2 answers

Getting object store properties without additional round-trip

I'm using IBM FileNet CE API 5.1 and facing perfomance problem because of additional refreshing in loop with great iteration amount (25000+). Here is code sample: for (Document document : documents) { ObjectStore objectStore =…
sermolaev
  • 975
  • 11
  • 23
4
votes
1 answer

IBM FileNet P8 vs IBM Case Manager?

Edit: closed due to opinion-based vs fact based, but the answer is quite fact based: Case Manager is a superset of FileNet, not a competing product. In my project, we're considering using IBM Case Manager instead of FileNet P8+ILOG JRules to…
3
votes
1 answer

FileNet P8 cannot checkout a document

I have an issue checking-out files in FileNet P8. It is possible for me to perform a checkout over documents with class "Document". Nevertheless, for any document from another class, the systems keeps telling me that the operation is not…
Rwanou
  • 431
  • 5
  • 24
3
votes
2 answers

ClassNotFoundException: org.apache.log4j.Priority when using Filenet APIs

I am using Spring Boot 2.7.2 to create a rest API that communicate with Filenet Content Engine using Filenet APIs and my pom file as follows :
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
3
votes
1 answer

how do we debug the bulk action javascript from ACCE?

Can someone throw in their idea on how we can debug the javascript that we write from the bulk action script from ACCE? I understand that the alert or debug statement may not work there. What are the other options we have?
Venky.m
  • 101
  • 1
  • 8
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
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
1 answer

Filenet and cmislib. AttributeError: 'RepositoryService' object has no attribute 'binding' error when getObjectByPath

I am trying to get and send data to Filenet. I am using cmislib 0.6.0. (Python). The environment I am trying to use has more than one repo. If I use repo = client.defaultRepository I am not get the repo I want (it is not the first of the…
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…
1
2 3
9 10