I am trying to read in an xml document:
However, when I use xmlparse(xmlText,'no'), it gives me an error message:
It seems that xmlparse does not recognize </name> as the end-tag of <Name> eventhough I have set the case-sensitive attribute to 'no'. When I use <Name></Name> or <name></name>, I get no error.
Am I doing something wrong here? I thought that by setting the case-sensitive attribute to 'no', the xmlparser should not be case-sensitive.
Thank you.
Min
Code:
<Customer id="1">
<Name>Aaron Long</name>
<ReturnAddress>123 Main St</returnaddress>
</customer>
However, when I use xmlparse(xmlText,'no'), it gives me an error message:
The element type "Name" must be terminated by the matching end-tag "".
It seems that xmlparse does not recognize </name> as the end-tag of <Name> eventhough I have set the case-sensitive attribute to 'no'. When I use <Name></Name> or <name></name>, I get no error.
Am I doing something wrong here? I thought that by setting the case-sensitive attribute to 'no', the xmlparser should not be case-sensitive.
Thank you.
Min