Johannes Schneider-3 wrote:
> 
> Could you paste your created xsd file?
> Maybe this is useful for others, too.
> 

<?xml version="1.0" encoding="UTF-8"?>

<xs:schema version="1.0" xml:lang="en"
           xmlns:xs="http://www.w3.org/2001/XMLSchema";
           targetNamespace="http://wicket.sourceforge.net";
           xmlns="http://wicket.sourceforge.net";
           elementFormDefault="qualified">

    <xs:complexType name="any">
        <xs:choice>
            <xs:any/>
        </xs:choice>
    </xs:complexType>

    <xs:element name="child" type="any"/>
    <xs:element name="panel" type="any"/>
    <xs:element name="extend" type="any"/>
    <xs:element name="remove" type="any"/>
    <xs:element name="head" type="any"/>
    <xs:element name="border" type="any"/>
    <xs:element name="link" type="any"/>
    <xs:element name="fragment" type="any"/>
    <xs:element name="component">
        <xs:complexType>
            <xs:choice>
                <xs:any/>
            </xs:choice>
            <xs:attribute name="class" use="required"/>
            <xs:attribute name="key" use="required"/>
        </xs:complexType>
    </xs:element>
    <xs:element name="message">
        <xs:complexType>
            <xs:choice>
                <xs:any/>
            </xs:choice>
            <xs:attribute name="key" use="required"/>
        </xs:complexType>
    </xs:element>

</xs:schema>
-- 
View this message in context: 
http://www.nabble.com/XSD---Validation-tf3488923.html#a9855396
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to