HI,
We are looking at a scenario where we need to have nested tags in a custom loader in 9.1. I havent found any relevant documentation around the same. Following is the example for the same :
<?xml version="1.0" ?><!DOCTYPE NmLoader SYSTEM "standardX10.dtd">
<NmLoader>
<csvEPMDocument handler="wt.doc.LoadEPM.loadEPM" >
<csvname>EPMDoc1</csvname>
<csvnumber>111</csvnumber>
<csvnewNumber></csvnewNumber>
<csvABC>
<csvABCName>some name</csvABCName>
<csvABCValue>some value</csvABCValue>
<csvABC>
</csvEPMDocument>
</NmLoader>
In the above code, I need to know if the NmLoader framework is designed to support csvABC kind of nested tags ? Further, the loader may have multiple csvABC tags.
I've already observed that the hastable containing name value pairs returned to the custom loader api (in this case wt.doc.LoadEPM.loadEPM ) does contain csvABC as a key but the value is empty. The hashtable DOESNOT contain any keys for csvABCName or csvABCValue.
Thanks,
Malavika