Ignore Case of XML Using a DTD

Does anyone know how to force DTD validation to ignore case of the xml that is being validated? i.e. I want to be able to treat <serviceIn> the same as <servicein>
[196 byte] By [cosborne] at [2007-9-26 1:40:43]
# 1

If you are trying to allow this you are no longer using XML. Case-sensitivity is part of the specification. Depending on how lax you let the users get you could end up with documents that are not only not Valid, but also not Well-formed.

ie

<root>

<lev1>

</Lev1>

</root>

-Mike

mikepevans at 2007-6-29 2:31:28 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...