[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Namespace issue

Subject: Namespace issue
From: Silent lights <silentlights@xxxxxxxxxxx>
Date: Thu, 9 Dec 2010 11:05:39 +0000 (GMT)
 Namespace issue
Hello there,
I am trying to generate an XSD with an XML instance. For this XML
Instance,

<?xml version="1.0" encoding="UTF-8"?>
<abc:io
xmlns:abc="urn:com.mycompany:bizatoms">
    <abc:array>
<abc:string>Data posted</abc:string>
    </abc:array>
</abc:io>

The generated
Schema was

<?xml version="1.0" encoding="utf8"?>
<?bpc.pltype.out
bpm.pltype=xsd,bpm.pltype=xml?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:abc="urn:com.mycompany:bizatoms"
targetNamespace="urn:com.mycompany:bizatoms" elementFormDefault="qualified"
attributeFormDefault="unqualified">
    <xs:element name="io">
<xs:complexType>
            <xs:sequence>
                <xs:element
name="array" type="arrayType"/>
            </xs:sequence>
</xs:complexType>
    </xs:element>
    <xs:complexType name="arrayType">
<xs:sequence>
            <xs:element name="string" type="stringType"/>
</xs:sequence>
    </xs:complexType>
    <xs:simpleType name="stringType">
<xs:restriction base="xs:string"/>
    </xs:simpleType>
</xs:schema>

I get an
error while valididating the Schema : 'stringType' must refer to an 
existing
simple or complex type.

I am not able to understand why this error pops up..
although the type is 
defined and it is under the same namespace.

Can someone
highlight on this particular case, and suggest how would the schema 
be
"pre-fixed perhaps?"

thank you
Densil

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.