I am working on a project where I will read an xml file from disk that a cobol mainframe system has created. I want a specific naming struture in this xml file like this:
<Orders>
<Order>
<Data>
...
</Data>
</Order>
<Order>
<Data>
...
</Data>
</Order>
<Order>
<Data>
...
</Data>
</Order>
</Orders>
The issue I have learned with this naming structure from my cobol developer is that "Order" and "Data" are reserved names in cobol so he says they cannot be used. Is this really the case or could someone point us in a direction where our xml output can be anything we want when cobol is creating the xml file?