i'm using GetElementsByTagName to extract an element from an xml. GetElementsByTagName is case sensitive - it throws an exception if the node name is 'PARAMS' instead of 'Params'. i dont want that , can i use a different way in XMLDocument so it wont be case sensitive ?

link|improve this question

79% accept rate
I'm pretty sure the DOM specifies case-sensitivity - although I know some libraries (eg. one of PHPs) don't always behave this way. XML itself is always case-sensitive. Knowing which language you are using would be helpful. More background information would be helpful. What is the problem you are actually looking to solve? See catb.org/~esr/faqs/smart-questions.html#goal – Rushyo Sep 15 '10 at 9:47
thakn you, I'm writing in C#. I'm receiving the XML by a WCF service. when i get the XML i dont want the code to fail just because one of the XML nodes is 'name' instead of 'Name' or even 'NAME', when i analyze it using GetElementsByTagName. – Rodniko Sep 15 '10 at 10:50
But why? Since XML is case-sensitive, nobody should ever give you a document with those characteristics. It's a malformed document if they do - and you should probably just handle the exception and tell them off! – Rushyo Sep 15 '10 at 10:54
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.