Saturday, June 9, 2018

Opentext Imaging Enterprise Scan

OpenText Imaging Enterprise Scan

OpenText Imaging Enterprise Scan converts the hard copy documents to digital images. It will capture and index from Scanners, FAX, Email, Shared drive and mobile.

OpenText Imaging Enterprise Scan Features:

  • Batch Scanning
  • Ad-hoc Scanning
  • Barcode Scanning
  • Web Interface for distributed scanning
  • Mobile Capture
  • Automatic Document Separation
  • Document Enhancement
  • JScript.NET to extend the functionality

OpenText Imaging Enterprise Scan Source :

  • FAX via Microsoft Office/Lotus Notes
  • Email
  • Shared Drive/Folder

OpenText Imaging Enterprise Scan Output Formats:

  • TIFF
  • PDF
  • Searchable PDF
  • PDF/A-1b

Friday, June 8, 2018

Opentext Content Server

OpenText Content Server

OpenText Content Server is the core content repository and foundational document management technology for the OpenText Enterprise Content Suite.

Content Server Features: 

  • Document Management
  • Smart UI
  • Perspective Manager
  • Search
  • Content Filters
  • Document Thumbnails
  • Office Editor
  • Workflows
  • Social & Collaborative Capabilities
  • Forms
  • Content Reporting
  • Content Suite Viewer 

Content Server Development Tools:

  • RESTful API
  • Content Server Widgets
  • AppWorks

Opentext Content Suite Components

OpenText Content Suite Platform

OpenText Content Suite Platform, the foundation for OpenText Enterprise Information Management (EIM) offerings, is a comprehensive enterprise content management (ECM) system designed to manage the flow of information from capture through archiving and disposition.  

OpenText Content Suite comes with the below components
  1. Content Server
  2. Records Management
  3. Enterprise Connect
  4. Archive Center
  5. Imaging Enterprise Scan
  6. Tempo Box

Friday, June 1, 2018

Restarting WAS ND


Restarting WebSphere Application Server Network Deployment Edition

Websphere Application Server Network Deployment edition contains more than one node to manage. Deployment manager is used to managing the nodes. 

To restart the WAS ND we need to follow the below sequence. The below shell scripts are used in Unix/Linux. For windows, we can use the .bat files.

Make sure that you login using the admin credentials. To run the shell scripts you need admin privileges.

  • stop servers using WAS Console. 
    • Login to WAS Console
    • On the left menu click on servers link
    • Select all the servers and click on the stop button
  • stop node agents using stopNode.sh command
    • Go to <WAS Profiles dir>/<node>/bin
    • run the command ./stopNode.sh 
  • stop DMGR using stopManager.sh
    • Go to <WAS Profiles dir>/dmgr/bin
    • run the command ./stopManager.sh
  • start DMGR using startManager.sh
    • Go to <WAS Profiles dir>/dmgr/bin
    • run the command ./startManager.sh
  • start node agents using startNode.sh
    • Go to <WAS Profiles dir>/<node>/bin
    • run the command ./startNode.sh
  • start servers using WAS Console
    • Login to WAS Console
    • On the left menu click on servers link
    • Select all the servers and click on the start button


FileNet Platform upgrade from v5.1 to v5.2.1

FileNet Content Engine Upgrade From v5.1 to v5.2.1

Recently I got an opportunity to work on FileNet upgrade. We have upgraded FileNet P8 v5.1 to v5.2.1. I would like to share my experience.


FileNet Environment Details:

Unix, SQL Server, AD, WAS ND


FileNet Upgrade Approach:

There are two ways to implement the upgrade
  1.  In-place upgrade
  2. Clone & upgrade

We have chosen the clone & upgrade path.

Pros:
  • It will not disturb the existing setup
Cons:
  • Need to spend more on infrastructure
  • Need to spend more efforts in cloning the environment

FileNet Upgrade Execution:

We can divide the tasks into.

1. Cloning the environment -
  • Copy the CE, PE and AE folders 
  • Copy the CE, PE databases 
  • Configure and deploy the applications
  • For PE need to change the pointers from a source server to a destination server

2. Verify the cloned environment

  • start the CE, PE and AE
  • Check the functionality is working as expected

3. Install the FileNet v5.2.1

  • Follow the installation instructions and install the 5.2.1 on the destination server
  • Configure and deploy the CE

4. Upgrade Content Engine

  • Upon starting the CE the platform will run the auto-upgrade tool
  • The progress is monitored using   http://server_name:port/FileNet/AutomaticUpgradeStatus 

5. upgrade Process Engine

  • IBM provided peupgrade tool for PE upgrade. 
  • Prepare the PE databases for upgrade
  • Open the tool and provide the details.
  • Run the tool. PE upgrade will take a while compared to CE upgrade.

Friday, March 9, 2018

IBM FileNet CPE v5.5 released

IBM FileNet CPE v5.5 Release Notes

IBM Recently released the new version of the FileNet Content Engine Platform v5.5.

The new features are
  • The following components, which were deprecated, are no longer supported in this version:
    • IBM FileNet Workplace XT
    • Application Engine
    • Workplace
    • IBM FileNet Integration for Microsoft Office
    • IBM FileNet Connector for Microsoft SharePoint Web Parts
  • Web-Services Reliable Messaging (WS-RM), UDDI and WSSR as service registry for Process Orchestration (Web Service invocation), stand-alone legacy Component Manager, and Java Database Connectivity (JDBC) provider support are deprecated in this release.
  • The Content Platform Engine S3 connector provides the ability to store and retrieve documents to and from an S3-compatible object storage solution that is deployed either on premise or in a private or public cloud.
  • Class Designer and Application Designer access to Administration Console for Content Platform Engine
  • Use token groups for Windows Active Directory
  • Role based access to objects
  • LDAP single entity lookup behavior to remove duplicates when using multiple LDAPS configured
  • FileNet Deployment manager supports the below object types
    • User-defined RecoveryBin subclasses
    • User-defined Hold subclasses
    • Sweep jobs
  • This release includes long list of new classes and properties.
  • JBoss Application Server is no longer supported.
  • The Composite Platform Installation Tool for installing a single server of FileNet P8 Platform is no longer supported.
  • A local installation of the documentation is no longer supported.
  • The following platforms are no longer supported:
    • HP and HPUX operating systems
    • Solaris operating systems

    Wednesday, March 22, 2017

    Display List Of Websphere Servers using Jython script


    To display the list of servers in Websphere Application Server Jython is using AdminTask object.

    The AdminTask,listServers will list down the servers. The server type is the parameter passed to list down different types of servers.

    To list the Websphere Application Servers
    AdminTask.listServers('[-serverType APPLICATION_SERVER]')

    To list the Websphere Web Servers
    AdminTask.listServers('[-serverType WEB_SERVER]')

    To list the Websphere Proxy Servers
    AdminTask.listServers('[-serverType PROXY_SERVER]')

    To list the Websphere Liberty Servers
    AdminTask.listServers('[-serverType LIBERTY_SERVER]')

    To list the Websphere on-demand routers
    AdminTask.listServers('[-serverType ONDEMAND_ROUTER]')

    To list the Websphere PHP servers
    AdminTask.listServers('[-serverType PHP_SERVER]')







    How to find the WAS Console Port number

    In WAS Server go to the below path <WebSphere Installation Path>/Profiles/<Dmgr profile name>/logs Check for " AboutTh...