Integration Engine Solutions to Connect Anything to Anything

Log out?

Purpose:

To review how to configure the eiPlatform.


Steps:

    • Installation
    1. Windows
      1. On Windows machines, the eiPlatform installs as a bundle, alongside an optional eiConsole.
      2. Once installed, the eiPlatform runs as a Windows Service.
      3. Installation is a simple .exe file which configures the service with default settings.
      4. Starting/stopping this service can be done through the Windows Services menu.
    2. Web Archive (WAR)
      1. For Mac, Linux, and other operating systems, the eiPlatform is installed as a Java Web Archive, or WAR.
      2. WAR files are deployed in a servlet container application.
      3. The eiPlatform can be deployed in most Java container applications.
      4. It is very strongly recommended to always use the Tomcat container to deploy the WAR.
      5. It is very strongly recommend to NOT use JBoss or WebSphere, although they are supported. The additional features offered by JBoss and WebSphere provide no benefits to how the eiPlatform runs, and there is always a possibility of a library conflict with those applications.
      6. Deploying the WAR to the container follows whatever the standard deployment procedure is for that container application.
      7. Once deployed, starting/stopping the application is the same as starting/stopping any web application deployed to that container.

    • Configuration – Web.xml
    1. Whether it’s a Windows installation or a WAR, internally it runs like a Java web server. This means its controlled via a web.xml file.
    2. In the WAR installation, it is located within the exploded archive directory, at WEB-INF/web.xml. In the Windows installation, it’s located in the Program Files installation directory, at server/eip/WEB-INF/web.xml.
    3. This file is a standard Java application deployment descriptor. Most of the configuration items in the web.xml should NEVER be touched, or else the application may not be able to run.
    4. There are only two properties that a user might want to change. They are the two init-params for the first servlet in the file, the “EIPServlet”.
    5. The first init-param, “com.pilotfish.eip.servlet.displayLog”, points to the main log file for the application.
    6. The second init-param, “com.pilotfish.eip.servlet.eipConfigFile”, points to the eipServer.conf configuration file. This is the primary configuration file for the eiPlatform.

    • Configuration – eipServer.conf
    1. The eipServer.conf is the primary configuration file for the eiPlatform.
    2. It is located in the root of the WAR installation, and in the server/eip directory in the Windows installation.
    3. The file is a standard properties file, with key/value pairs separated by “=”.
    4. For most of the properties, consult PilotFish documentation.
    5. There are two extremely important properties.
    6. “com.pilotfish.eip.configDirectory” is the property that points to the location of the “eip-root” Working Directory.
    7. “com.pilotfish.eip.logConfigFile” is the property that points to the logging configuration file, logConfig.xml.

    • Configuration – logConfig.xml
    1. The logConfig.xml file is a log4j 1.x configuration file.
    2. It is located in the root of both the Windows and WAR installations.
    3. The only things that should ever be changed here are in the two appenders and the categories.
    4. Each of the two appenders has a param with a full file path in it. This param is the first param for each appender. That path has to point to the default log file for the application.
    5. Below the appenders are a series of categories. Each one of these assigns an appender and a priority value for each type of logger in the application. The only thing that should be changed here is the level, by default it’s set to “debug” for most of them, this can be raised or lowered depending on how detailed the user wants the logging to be.

    • Externalize Configuration
    1. All three configuration files come within the eiPlatform installation.
    2. The web.xml should never be moved.
    3. For greater re-usability, it’s generally recommended to copy the eipServer.conf and logConfig.xml out of the installation into another location, generally within or adjacent to the “eip-root”.
    4. The default log location should also be externalized in the same way.
    5. The properties in the web.xml and eipServer.conf that point to the locations of the other files need to be updated accordingly.

    This is a unique website which will require a more modern browser to work! Please upgrade today!