Guidelines for deploying Unica Platform on JBoss

You must follow a set of guidelines when you deploy Unica Platform on JBoss.

Make sure that the version of JBoss meets the requirements that are described in the HCL Enterprise Products Recommended Software Environments and Minimum System Requirements document. Use the following guidelines when you deploy Unica Platform on JBoss:

Use the following guidelines when you deploy the Unica Platform products on any supported version of JBoss:

  1. Deploy the HCL EAR file or the unica.war file as an enterprise application.

    For example: deploy <Platform_Install>\unica.war

    See https://docs.jboss.org/jbossweb/3.0.x/deployer-howto.html for instructions on Deploying Web Server Application in JBoss.

  2. Complete the following tasks if your installation must support non-ASCII characters, for example for Portuguese or for locales that require multi-byte characters:
    1. Edit the standalone.conf script in the bin directory under your JBOSS /bin directory to add

      -Dfile.encoding=UTF-8

      -Dclient.encoding.override=UTF-8

      -Djboss.as.management.blocking.timeout=3600

      to JAVA_VENDOR.

      In case you are deploying a non-production setup, add

      -DENABLE_NON_PROD_MODE=true

      In case of a production setup, this Java option must be removed or set to false.

    2. Restart JBoss server.
  3. To ensure that the Scheduler works correctly, complete the following substeps.
    • Take a backup of <JBOSS_HOME>/standalone/configuration/standalone.xml file.
    • In <JBOSS_HOME>/standalone/configuration/standalone.xml, search the module name for driver.
      <driver name="oracledriver" module="oracle.jdbc">
      <xa-datasource-class>oracle.jdbc.OracleDriver</xa-datasource-class>
      </driver>
    • Add the following statement underneath <subsystem xmlns="urn:jboss:domain:ee:4.0"> to make the module name global.
      <global-modules>
      <module name="oracle.jdbc"/>
      </global-modules>
    • Add max-parameters="10000" property for the following tags.

      • <http-listener name="default"...max-parameters="10000"/>
      • <https-listener name="https...max-parameters="10000"/
    • Restart JBOSS server.