Difference between revisions of "Overloading policies"
Jump to navigation
Jump to search
old>Admin |
m (17 revisions imported) |
||
(13 intermediate revisions by one other user not shown) | |||
Line 8: | Line 8: | ||
* Tomcat: <tomcat root>/conf/Catalina/localhost/<application>.xml | * Tomcat: <tomcat root>/conf/Catalina/localhost/<application>.xml | ||
* JBoss: | * JBoss: <jboss root>/standalone/configuration/<application>.xml | ||
The policy in question should use the following syntax: | The policy in question should use the following syntax: | ||
Line 14: | Line 14: | ||
<Parameter name="Policy.XXXXX" value="YYYYY"/> | <Parameter name="Policy.XXXXX" value="YYYYY"/> | ||
X = Name of the policy | X = Name of the policy as per [[Policy_reference|Policy reference]] | ||
Please ensure the datatype fits Policy type, or the overloaded value will default to the installation value. | Y = Value of the policy in String, Integer or Boolean format | ||
=== Usage notes === | |||
* The Context parameters can optionally be set inside the servlet container manager | |||
* Changing overloaded policies inside the designer will have NO EFFECT at all | |||
* Please ensure the datatype fits Policy type, or the overloaded value will default to the installation value. | |||
** For boolean values use "true" or "false" | |||
** String value " should be escaped normally | |||
* Policy overloads are loaded ONCE when the application is loaded by the servlet container. | |||
** If you change the values, you will need to restart the application or the container | |||
** All parameters are written to the server / application logfile upon startup | |||
=== Example configuration === | === Example configuration === | ||
Line 23: | Line 32: | ||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<Context path="/TempusServa" swallowOutput="true"> | <Context path="/TempusServa" swallowOutput="true"> | ||
<Parameter name="Policy.applicationDisplayName" value="CustomerPortal"/> | |||
<Parameter name="Policy.applicationDisplayName" value=" | |||
<Parameter name="Policy.doMainMenuAccordion" value="false"/> | <Parameter name="Policy.doMainMenuAccordion" value="false"/> | ||
<Resource name="jdbc/TempusServaLive" auth="Container" type="javax.sql.DataSource" | <Resource name="jdbc/TempusServaLive" auth="Container" type="javax.sql.DataSource" | ||
... | ... | ||
</Context> | </Context> | ||
=== Protecting the variables === | === Protecting the variables === | ||
By setting the special policy '''policyHideValues''', overloaded are no longer visible from backend system. | |||
<Parameter name="Policy.policyHideValues" value="true"/> |
Latest revision as of 11:55, 10 December 2021
Overloading policies
The server policies can be hardcoded into the deployment file for various reasons
- Ensure system values are not subject to change in the designer
- Ease environment replication: Just copy the whole database, and define environmental differences in a file.
Adding an overloaded policy
Policy overloads are placed inside the Context element in the deployment file, where the connection strings are placed too.
- Tomcat: <tomcat root>/conf/Catalina/localhost/<application>.xml
- JBoss: <jboss root>/standalone/configuration/<application>.xml
The policy in question should use the following syntax:
<Parameter name="Policy.XXXXX" value="YYYYY"/>
X = Name of the policy as per Policy reference
Y = Value of the policy in String, Integer or Boolean format
Usage notes
- The Context parameters can optionally be set inside the servlet container manager
- Changing overloaded policies inside the designer will have NO EFFECT at all
- Please ensure the datatype fits Policy type, or the overloaded value will default to the installation value.
- For boolean values use "true" or "false"
- String value " should be escaped normally
- Policy overloads are loaded ONCE when the application is loaded by the servlet container.
- If you change the values, you will need to restart the application or the container
- All parameters are written to the server / application logfile upon startup
Example configuration
<?xml version="1.0" encoding="UTF-8"?> <Context path="/TempusServa" swallowOutput="true"> <Parameter name="Policy.applicationDisplayName" value="CustomerPortal"/> <Parameter name="Policy.doMainMenuAccordion" value="false"/> <Resource name="jdbc/TempusServaLive" auth="Container" type="javax.sql.DataSource"
...
</Context>
Protecting the variables
By setting the special policy policyHideValues, overloaded are no longer visible from backend system.
<Parameter name="Policy.policyHideValues" value="true"/>