| re: XML Validation: required attributes
I get the following warning using .net 2.0: "The value of the
'schemaVersion' attribute does not equal its fixed value."
--
Stan Kitsis
Program Manager, XML Technologies
Microsoft Corporation
This posting is provided "AS IS" with no warranties, and confers no rights.
"uttara" <planetu99@hotmail.com> wrote in message
news:e1cn4kyBGHA.3580@TK2MSFTNGP11.phx.gbl...[color=blue]
> Stan,
> I won't be utterly surprised if I missed out something. I am using the
> XMLValidatingReader. Here is the schema I am using:
> <?xml version="1.0" encoding="utf-8"?>
> <xs:schema id="Schema" xmlns:xs="http://www.w3.org/2001/XMLSchema">
> <xs:element name="Products">
> <xs:complexType>
> <xs:sequence>
> <xs:element name="ItemCode" minOccurs="1"
> maxOccurs="unbounded">
> <xs:complexType>
> <xs:sequence>
> <xs:element name="SKU" type="xs:string"
> minOccurs="0" maxOccurs="unbounded" />
> </xs:sequence>
> <xs:attribute name="code" type="xs:string" />
> </xs:complexType>
> </xs:element>
> </xs:sequence>
> <xs:attribute name="schemaVersion" type="xs:decimal"
> use="required" fixed="1.0" />
> </xs:complexType>
> </xs:element>
> </xs:schema>
>
> Here is the instance
> <?xml version="1.0" encoding="utf-8" ?>
> <Products schemaVersion="1.1">
> <ItemCode code="10098"></ItemCode>
> <ItemCode code="10047">
> <SKU>0023</SKU>
> <SKU>0025</SKU>
> </ItemCode>
> </Products>
>
> Thanks again,
> Uttara
>
> Stan Kitsis [MSFT] wrote:[color=green]
>> Either you didn't do what you thought you did or the validator has a
>> problem. Which validator did you use and what are your schema/instance?
>>[/color][/color] |