Indrajit, thx again
So I believe, the java mapping has to be changed to not pass MAT for create element
// building the target structure Element target = newdoc.createElement("MAT"); - I have to remove this
newdoc.appendChild(target); - have to remove this. Element doctype = newdoc.createElement(root.getChildNodes().item(1) will be changed to item(0)
.getNodeName());
And also to add the logic for [ ]
String data = "[";
if (fileArray != null) {
for (int i = 0; i < fileArray.length; i++) {
if data = "[";
data = data + fileArray[i];
else
if (i < fileArray.length - 1) {
data = data + ",";
endif.
data = data + "]";
is this right?
thx indrajit
-mike