This section lists the limitations and known issues of this release. It also provides information about any fixes or workarounds that exist for resolving these limitations and issues.
For example, in the following code sample, a BeanCollection is defined as the nested element of a Keyed Collection:
<context id="creditCardsCtx" type="process"> <refKColl refId="creditCardApplData"/> </context>Data definition:
<kColl id="creditCardApplData"> <bColl id="creditCardApplDataBean" bean="com.ibm.btt.beancoll.CreditCardApplBean" /> </kColl>You must revise it as follows:
<context id="creditCardsCtx" type="process"> <refKColl refId="creditCardApplData"/> </context>Data definition:
<bColl id="creditCardApplData" bean="com.ibm.btt.beancoll.CreditCardApplBean" />