Re: The validate schema menu (VS.NET 2002) -
04-09-2004
, 03:24 AM
Hello, Julian!
You wrote on Wed, 7 Apr 2004 19:06:25 -0300:
JH> Does the Validate Schema menu option interpret any feature of a .xsd
JH> file? I am trying to test a simple extension from a complextype, but
JH> when I try to validate my XML file, the validation complains.
[Sorry, skipped]
You should specify namespace for your custom types
<xs:sequence>
<xs:element name="Order" type="mstns:BaseOrder" />
</xs:sequence>
<xs:extension base="mstns:BaseOrder">
<xs:sequence>
....
and so on.
With best regards, Alex Shirshov. |