I am trying to use Beautiful Stone Soup (BSS) to modify existing XML with case-sensitive tag names. When BSS reads in XML, it leads all the tag names to lowercase, and I cannot find an easy way to restore the original capital letter pattern when writing it back to the file. This leads to downstream problems because the output XML no longer validates the schema (since the schema expects an initial capital letter). Is there a flag that I can set when I first read it, which will indicate that BSS treats tag names as case sensitive?
source share