यह foo.xsd
में अपने मौजूदा XSD स्कीमा, कि बस प्रकार वाणी है:रूट स्कीमा में एक्सएसडी प्रकार कैसे आयात करें?
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0"
targetNamespace="foo">
<xs:import schemaLocation="foo.xsd" namespace="foo" />
<xs:element name="RootElement" type="alpha"/>
</xs:schema>
यह मैं क्या SAX से हो रही है है:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0"
targetNamespace="foo">
<xs:complexType name="alpha">
<!-- skipped -->
</xs:complexType>
</xs:schema>
यह एक और स्कीमा, उस तत्व की घोषणा की है जावा में पार्सर:
"The namespace attribute 'foo' of an <import> element information
item must not be the same as the targetNamespace of the schema it exists in."
क्या मैं गलत कर रहा हूँ?
बहुत बहुत धन्यवाद, यह वही है जो मैं ढूंढ रहा था! – yegor256
"tns" "targetNamespace" जैसा ही है? – Line