Export Classification Attributes for Part in ESIResponse
I need to export Classification attributes for Part in ESIResponse file. I want to do it a specific XML structure like:
<ClassificationAttributes>
<ClassificationAttributeMapping attribute="width" value="20" units="mm"></ClassificationAttributeMapping>
<ClassificationAttributeMapping attribute="height" value="40" units="mm"></ClassificationAttributeMapping>
</ClassificationAttributes>
How can I achieve this? Should I be adding more schema in ESIResponseMetaInformation.xsd and also in ESIResponseMetaInfo.xml?
I tried to do following wherein:
- Added more schema to - ESIResponseMetaInformation.xsd
- Defined elements in - ESIResponseMetaInfo.xml
- In adjustPartElement hook when I get hold of Element for Part, I get the IeNode from it and query for childNodes but don't get anything. I expected to get <ClassificationAttributes>. If I could get that then I can wrap it an Element and add Att to it for
- <ClassificationAttributeMapping attribute="width" value="20" units="mm"></ClassificationAttributeMapping>
- <ClassificationAttributeMapping attribute="height" value="40" units="mm"></ClassificationAttributeMapping>
Please suggest if this would be the right way to move forward or not

