Adding the Plug-in to TIBCO BusinessWorksTM Container Edition

To add the plug-in to TIBCO BusinessWorks™ Container Edition, additional steps are required before applying JDE applications to TIBCO BusinessWorks™ Container Edition.

Procedure

  1. Open the physical media or download the TIB_bwpluginjde_version_buildnumber_bwce-runtime.zip installation package from the TIBCO eDelivery site (https://edelivery.tibco.com).
    To download the installation package, a user name and password are required. If you do not have a user name and password, contact TIBCO Technical Support.
  2. Add the .zip file to TIBCO BusinessWorks Container Edition run time.
    • To add the .zip file to TIBCO BusinessWorks Container Edition run time for Docker/Dockerbased platforms, see "Creating the TIBCO BusinessWorks™ Container Edition Application Docker Image" in "Application Development for Docker" of TIBCOBusinessWorks™ Container Edition Application Development.

Windows Container Edition

To add the plug-in to TIBCO BusinessWorks™ Windows Container Edition, follow the section “Extend TIBCO BusinessWorks Container Edition Base Docker Image” from https://github.com/TIBCOSoftware/bwce-docker/tree/windows.

Prerequisites

Ensure that all paths configured in the shared resource and config files follow Windows directory structure and is set to C:\<folderName>\ jdeinetrop.ini (example C:\config) at design time; all the config files required for JDE are placed in C:\<folderName> (jdbj.ini, tnsname.ora, jdeinetrop.ini, jdelog.ini). Default drive in the Docker image is C.

Procedure

  1. Copy configuration files from host to the Docker image. Example:

    FROM bwce:latest

    RUN mkdir config

    ADD config C:\config

    RUN net user administrator \active:yes

    ADD <earfilename.ear> \

    Note: Administrator rights are required to run the docker image provided in the dockerfile using net user administrator /active:yes.
  2. Disable the Firewall on the host OS when running the application on Docker.

Linux Container Edition

To add the plug-in to TIBCO BusinessWorks™ Linux Container Edition, additional steps are required before applying JDE applications to TIBCO BusinessWorks™ Container Edition.

Prerequisites

Ensure that all paths configured in the shared resource and config files follow Linux directory structure and is set to “C:/<folderName>/ jdeinetrop.ini” (example “C:/config”) at design time; all the config files required for JDE are placed in C:/<folderName> (jdbj.ini, tnsname.ora, jdeinetrop.ini,jdelog.ini). Default drive in the Docker image is C.

Procedure

  • Copy configuration files from host to the Docker image. Example:

    FROM <BASE_IMAGE>

    MAINTAINER <MAINTAINER_NAME>

    USER <USER_NAME>

    RUN mkdir -p <DIR_NAME>

    COPY <FILES_TO_COPY> <DIR_NAME>

    ADD <earfilename.ear> /

    Note: Administrator rights are required to run the Docker image provided in the dockerfile using USER root.