Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: converting xml file to schema file problem

From: harry <harioumsharan@-----.--->
To: NULL
Date: 10/7/2009 2:57:00 AM
On Oct 7, 2:41 pm, sharan <harioumsha...@gmail.com> wrote:
> i am converting a xml file having namespaces in to schema file (.xsd)
> for validation.
>
> my xml file is
> test.xml
> -----------------------------------------------------------
> <?xml version="1.0" encoding="UTF-8"?>
> <root xmlns:xs="http://www.w3.org/2001/XMLSchema"
>       xmlns:h="http://www.w3.org/TR/html4/"
>       xmlns:f="http://www.w3.org/TR/scxml/">
> <h:table>
>     <h:tr>vegitables</h:tr>
>     <h:td>Apples</h:td>
> </h:table>
>
> <f:table>
>   <f:name>African Coffee Table</f:name>
>   <f:data>hari</f:data>
>   <f:length>oum</f:length>
> </f:table>
> </root>
> ----------------------------------------------------------
>
> I converted this xml file in to schema file.
> test.xsd
> ----------------------------------------------------------
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <xs:schema  xmlns:xs="http://www.w3.org/2001/XMLSchema"
>              xmlns:h="http://www.w3.org/TR/html4/"
>              xmlns:j="http://www.w3.org/TR/scxml/">
> <xs:element name="root">
>    <xs:complexType>
>        <xs:sequence>
>
>            <xs:element name="h:table">
>               <xs:complexType>
>                   <xs:sequence>
>                       <xs:element name="h:tr" type="xs:string"/>
>                       <xs:element name="h:td" type="xs:string"/>
>                   </xs:sequence>
>               </xs:complexType>
>            </xs:element>
>
>            <xs:element name="f:table">
>               <xs:complexType>
>                   <xs:sequence>
>                       <xs:element name="f:name" type="xs:string"/>
>                       <xs:element name="f:data" type="xs:string"/>
>                       <xs:element name="f:length" type="xs:string"/>
>                   </xs:sequence>
>               </xs:complexType>
>            </xs:element>
>
>         </xs:sequence>
>      </xs:complexType>
>    </xs:element>
>
> </xs:schema>
> ------------------------------------------------------------------
> when i am validating this schema file
> it is showing eroors in OUTPUT
> -------------------------------------------------------------------
> temp1.xsd:9: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element', attribute 'name': 'h:table' is not
> a valid value of the atomic type 'xs:NCName'.
>
> temp1.xsd:18: element element: Schemas parser error : Element '{http://www.w3.org/2001/XMLSchema}element', attribute 'name': 'f:table' is not
> a valid value of the atomic type 'xs:NCName'.
>
> temp.xml:4: element root: Schemas validity error : Element 'root': No
> matching global declaration available for the validation root.
> temp.xml fails to validate
> -------------------------------------------------------------------
>
> I want to know that while converting above xml file to schema file, is
> there
> any problem or errer in converted schema file.
> And i also want to know, that, why these error are coming and how to
> overcome
> these.
>
> note: for validation we can use testSchema.c. which is in libxml2 api.
>
> Thanks in advance

Sorry by mistake it is showing different encoding in both file.
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="ISO-8859-1"?>

But i am using same encoding in both file, like:
<?xml version="1.0" encoding="UTF-8"?>


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent