WEB_APPLICATION_EXECUTION_COMPONENT

The WEB_APPLICATION_EXECUTION_COMPONENT defines a set of execution parameters that are used when starting the Web application. It takes an attribute Id, which specifies the unique identifier for this set of execution definitions. It is this unique identifier that is referenced by an application, providing that application with its set of execution parameters. The attribute AllowUrlParameters defines whether the parameters provided in the request query string should be ignored ("FALSE", default value) or provided to the DVM ("TRUE").

Syntax

<WEB_APPLICATION_EXECUTION_COMPONENT Id="compId"
 [ AllowUrlParameters="allowParam" ] >
 [ <ENVIRONMENT_VARIABLE Id="envId" > env </ENVIRONMENT_VARIABLE> [...] ]
 [ <PATH> path </PATH> ] 
 [ <DVM> dvm </DVM> ] 
 [ <MODULE> module </MODULE> ]
 [ <PARAMETERS> parameterSettings </PARAMETERS> ] 
 [ <ACCESS_CONTROL> accessSettings </ACCESS_CONTROL> ]
 [ <DELEGATE> delegateSettings </DELEGATE> ]
 [ <WEB_COMPONENT_DIRECTORY> webComponent </WEB_COMPONENT_DIRECTORY> ] 
</WEB_APPLICATION_EXECUTION_COMPONENT>

Child elements

The WEB_APPLICATION_EXECUTION_COMPONENT element may contain the following child elements:

  1. Zero or more ENVIRONMENT_VARIABLE elements.
  2. Zero or one PATH element.
  3. Zero or one DVM element.
  4. Zero or one MODULE element.
  5. Zero or one PARAMETERS element.
  6. Zero or one ACCESS_CONTROL element.
  7. Zero or one DELEGATE element.
  8. Zero or one WEB_COMPONENT_DIRECTORY element.

Example

<WEB_APPLICATION_EXECUTION_COMPONENT Id="cpn.wa.execution.local">
    <ENVIRONMENT_VARIABLE Id="FGLDIR">$(res.fgldir)</ENVIRONMENT_VARIABLE>
    <ENVIRONMENT_VARIABLE Id="PATH">$(res.path)</ENVIRONMENT_VARIABLE>
    <ENVIRONMENT_VARIABLE Id="INFORMIXDIR">$(res.informixdir)</ENVIRONMENT_VARIABLE>
    <ENVIRONMENT_VARIABLE Id="INFORMIXSERVER">$(res.informixserver)</ENVIRONMENT_VARIABLE>
    ... 
    <DVM>$(res.dvm.wa)</DVM>
    ...
   <WEB_COMPONENT_DIRECTORY>$(connector.uri)/ua/i/$(application.path)/webcomponents</WEB_COMPONENT_DIRECTORY>
</WEB_APPLICATION_EXECUTION_COMPONENT>

Parent elements

This element is a child of one of the following elements: COMPONENT_LIST