vote up 1 vote down star

I am using xmllint --schema option to validate my XML that looks like this

<XML>
<Active>True</Active>
</XML>

In my schema file, I have following line that describes Active element.

<xsd:element name="Active" type="xsd:boolean" />

When I run xmllint, I get error messages that says

/tmp/schema_validation.xml:73: element Active: Schemas validity error : Element 'Active': 'True' is not a valid value of the atomic type 'xs:boolean'.

When I change the XML to

<Active>true</Active>

Then the error message disappears.

So, it looks like xsd:boolean means it's all lowercase "true/false" but not "True/False" to xmllint.. My question is, how can I make xmllint to accept "True" for xsd:boolean type? Or is there different tools that I can use that will validate this XML? Changing the XML or schema is not my option at this point.

Thanks!

flag
If changing the source XML or the schema is not an option, then I would suggest running the source XML through a transform that normalizes the boolean values to the proper XSD valid values. – Mads Hansen Aug 21 at 17:47
I've thought of doing that, but I was scared to modify values that just happen to be "True". For eample, if a element called "Description" happens to contain value "True", then I don't want that to be converted to "true". I don't think there is any way to know which element to apply the normalization or not.. – SoichiH Aug 22 at 14:53
you need to go upstream: stop the generation of invalid XML at its source. – Cheeso Aug 22 at 16:44

2 Answers

vote up 4 vote down check

You cannot.

According to the XML Schema specification, a boolean is true or false. True is not valid:


  3.2.2.1 Lexical representation
  An instance of a datatype that is defined as ·boolean· can have the 
  following legal literals {true, false, 1, 0}. 

  3.2.2.2 Canonical representation
  The canonical representation for boolean is the set of 
  literals {true, false}. 

If the tool you are using truly validates against the XML Schema standard, then you cannot convince it to accept True for a boolean.

link|flag
Thanks. It's good to know that there is absolutely no way to redefine xsd:boolean – SoichiH Aug 22 at 14:50
vote up 2 vote down

xs:boolean is predefined with regard to what kind of input it accepts. If you need something different, you have to define your own enumeration:

 <xs:simpleType name="my:boolean">
    <xs:restriction base="xs:string">
      <xs:enumeration value="True"/>
      <xs:enumeration value="False"/>
    </xs:restriction>
  </xs:simpleType>
link|flag
Thanks! I will request something likee this to be part of the schema so that I can work around this for now. – SoichiH Aug 22 at 14:51

Your Answer

Get an OpenID
or

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