Example code accessing ENC Environment configuration

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 2624

This topic has not yet been written. The content below is from the topic description.
Example 6.6. ENC env-entry access code fragment InitialContext iniCtx = new InitialContext(); Context envCtx = (Context) iniCtx.lookup("java:comp/env"); Integer maxExemptions = (Integer) envCtx.lookup("maxExemptions"); Float taxRate = (Float) envCtx.lookup("taxRate");