APPLICATIONS

This APPLICATIONS element contains definitions for web applications to be embedded within a third-party application portal and rendered in the portal by the Genero Browser Client.

Syntax

<EXECUTION>
  ...
  <APPLICATION>
    <APPLICATIONS>
       [ <APPLICATION>...</APPLICATION>] [...]
    </APPLICATIONS>
  </APPLICATION>
  ...
</EXECUTION>

Child elements

The APPLICATIONS element may contain the following elements:

  1. One or many APPLICATION (for embedded apps) elements.

Usage

You use this element to configure one or more web applications to run in a third-party application portal, where applications are rendered.GAS.

If applications are defined, the main APPLICATION element SinglePageApplications attribute must be set to TRUE, otherwise a configuration error is returned.
Important:

The embedded applications feature requires Genero Browser Client 4.00.04 or greater to run applications defined in the APPLICATIONS node.

Example external web application configuration file

<?xml version="1.0" encoding="UTF-8"?>
  <APPLICATION Parent="defaultgwc" SinglePageApplications="TRUE"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://www.4js.com/ns/gas/5.00/cfextwa.xsd">
     <EXECUTION>
        <PATH>C:\Users\fg\gas3694</PATH>
        <MODULE>main</MODULE>
        <APPLICATIONS>
            <APPLICATION Id="sib1">
                <PATH>C:\Users\fg\gas3694</PATH>
                <MODULE>sibling1</MODULE>
            </APPLICATION>
            <APPLICATION Id="sib2">
                <PATH>C:\Users\fg\gas3694</PATH>
                <MODULE>sibling2</MODULE>
                <PARAMETERS>
                   <PARAMETER>WORLD</PARAMETER>
                   <PARAMETER>OF</PARAMETER>
                   <PARAMETER>GENERO</PARAMETER>
                </PARAMETERS>
            </APPLICATION>
        </APPLICATIONS>
     </EXECUTION>
     <AUTO_LOGOUT Using="cpn.wa.autologout"/>
     <UA_OUTPUT>
        <PROXY>$(res.uaproxy.cmd)</PROXY>
        <PUBLIC_IMAGEPATH>$(res.public.resources)</PUBLIC_IMAGEPATH>
        <GBC>gwc-dev</GBC>
        <TIMEOUT> Using="cpn.wa.timeout"</TIMEOUT>
     </UA_OUTPUT>
     <END_URL>http://www.4js.com</END_URL>
  </APPLICATION>

Parent elements