Z
Zombie
Hi all,
I wish to create a namespace other than the default one.
Let's say, the Schema looks like:
-----------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:d="http://www.geodesy.org/dam"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="River">
<xs:complexType>
<xs:sequence>
<xs:element name="Length" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
-----------------------------------------------------------------------
Now, I wish that a new element is added to this schema which belongs
to another namespace (and not the default one). Is this possible?
Thanks.
I wish to create a namespace other than the default one.
Let's say, the Schema looks like:
-----------------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:d="http://www.geodesy.org/dam"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="River">
<xs:complexType>
<xs:sequence>
<xs:element name="Length" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
-----------------------------------------------------------------------
Now, I wish that a new element is added to this schema which belongs
to another namespace (and not the default one). Is this possible?
Thanks.