vote up 2 vote down star

Hi! As far as I know XML element type names as well as attribute names are case sensitive.

Is there a way or any trick to get case insensitive elements?

Clarification: A grammar has been defined via XSD which is used for some clients to upload data. The users -the content generators- are creating XML files using different tools but many of them are using plain text editors or whatever. Sometimes when this people are trying to upload their files they get incompatibility errors. It is a common error that they mix lowerCase and upperCase tags although it is was always clear that tags ARE case sensitive.

I have access to the XSD file which defines this grammar and I can change it. The question is how to avoid this error-prone lower/upper case tags problem.

Any idea?

Thanks in advance!

flag

66% accept rate
Thanks for the answers. In this case UNFORTUNATELY XML is NOT machine-generated. Is hand written :-) – Luixv May 15 at 14:15

8 Answers

vote up 0 vote down

After uploading, walk the XML file (via DOM or SAX) and fix the casing before you validate?

link|flag
vote up 0 vote down

As @Melkisadek said, the XSD validation exists for a purpose. If you allow users to upload files with invalid XML, your application is bound to fail at some point when the data within those files is accessed. Furthermore, the whole purpose of having an XSD validate the input XML schema is defeated. If you are willing to forego the whole schema validation feature, then you would need to use an XSLT to convert all tags to Uppercase or Lowercase as you desire (see @Rashmi's answer).

It would be analogous to allowing a user to input special characters in a Social Security Number entry field, just because the user is more comfortable entering special characters (Yes, this example is silly, couldn't think of a better one!)

Therefore, in my mind, the solution lies in keeping the schema validation as-is, but providing users a way to validate the schema before uploading. For instance, if this is Web app, you could provide a button on the page which uses Javascript to validate the file against your schema. Alternatively, validate on the server only when the file is uploaded. In both cases, provide appropriate feedback such as the line number on which the errant entities lie, the character position, and reason for flagging an error.

link|flag
vote up 0 vote down

I agree with Rashmi that your best bet is to convert everything to uppercase in your transforms.

link|flag
there are NO transforms. – Luixv May 15 at 16:57
Add one that normalizes the capitalization. – Sugerman May 15 at 17:08
vote up 3 vote down

If I understand your problem correctly then the case errors can only be corrected between the creation and the upload by a 3rd party parsing tool.

i.e. XML File > Parsed against XSD and corrected > Upload approved

You could do this at run-time by developing a container application for your clients to create their XML files in. Alternatively you could write an application on the server side that takes the uploaded file and checks the syntax. Either way you're going to have to make a decision and then do some work!!

A lot depends on the scale of the problem. If you have similar tags in different cases in your XSD e.g. and but you are receiving then you will need a complicated solution based on node counting etc.

If you are purely stuck with clients using random cases against an XSD only containing lower case tags then you should be able to parse the files and convert all tags to lower case in one go. This is assuming the content between the tags is multi-case and you can't just convert the full document.

How you do this depends on the mechanics of your situation. Obviously it will be easier to get the clients to error check their own submissions. If this isn't practical then you'll need to identify a window of opportunity in the process which will allow you to convert the file to the correct format before errors are encountered.

There are far too many ways to go about this to discuss here. It mainly depends on the skill-sets or finance available to you.

link|flag
what you are saying is correct. What I am looking for is something at XSD level. I mean I would prefer to avoid changing server-side methods if I can cope this problem at XSD level. – Luixv May 15 at 14:55
Anyway, thanks for the comment. Seems to be that at XSD level there is no way. +1 – Luixv May 15 at 14:58
Great answer, very much what I would have said! +1 – Cerebrus May 15 at 16:50
Your problem is that you want to use the XSD to force an unlinked document to follow the schema exactly. You can't do that without some form of validation and that will mean either supplying a tool to the client or validating and correcting the client submission. The XSD itself is purely a description of the data structure and content held in the XML file. The idea behind it is that it allows you to easily map various data sets to a single XML document (for document transfer). It doesn't perform any actions on the document itself. – melkisadek May 16 at 17:16
vote up 0 vote down

Is converting the input to lowercase not an option?

link|flag
No, it is not. Users have a GUI from where they upload their files directly. – Luixv May 15 at 14:51
Parse the input file and save to a directory? – Antony Carthy May 18 at 6:59
vote up 0 vote down

XPath/ Xslt processors are case sensitive. They can't select a node/ attribute if you specify the wrong case.

In case you want to output the node name and want it to be in upper case, you can do:

upper-case(local-name())
link|flag
vote up 0 vote down

XML is normally machine generated. Therefore, you should have no real issue here width <RANdOm /> case.

If the real issue is that two different systems are generating two different types of the tag (<Widget /> vs. <widget />), I guess you could simply define both cases in your XSD.

link|flag
vote up 1 vote down

Please explain the purpose. I should think that if "Upper case XML" is the answer, then you are probably asking the wrong question...

link|flag
Very well said! +1 – Cerebrus May 15 at 14:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.