chcę zrobić prosty schemat do pustej elmentBłąd podczas sprawdzania poprawności XML Schema
<product orderid="4"/>
tworzę XSD takiego:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://xml.netbeans.org/schema/first"
xmlns:tns="http://xml.netbeans.org/schema/first"
elementFormDefault="qualified">
<xsd:element name="product" type="prodtype"/>
<xsd:complexType name="prodtype">
<xsd:attribute name="prodid" type="xsd:integer"/>
</xsd:complexType>
</xsd:schema>
otrzymuję następujący błąd podczas sprawdzania poprawności XML przeciwko XSD:
Error resolving component 'prodtype'. It was detected that 'prodtype' has no namespace, but components with no target namespace are not referenceable from schema document 'file:/D:/Teacher%20assistant%202011/First%20term/web%20services/test%20programs/BpelModule1/src/product.xsd'. If 'prodtype' is intended to have a namespace, perhaps a prefix needs to be provided. If it is intended that 'prodtype' has no namespace, then an 'import' without a "namespace" attribute should be added to 'file:/D:/Teacher%20assistant%202011/First%20term/web%20services/test%20programs/BpelModule1/src/product.xsd'.
btw, 'xsd: schema' nie jest zamknięty w powyższym kodzie, może to być powiązane? – Piskvor
Nie, to tylko błąd w formowaniu, ten kod działa ze mną, ale po usunięciu "tns" z xmlns: tns = "http://xml.netbeans.org/schema/first", nie rozumiałem do tej pory przyczyny ! – palAlaa