Clovertech
› Clovertech Forums › Read Only Archives › Cloverleaf › Cloverleaf › XML Compile error
[ERROR] The schema must contain at least one global element declaration.
Do you know what I need to do to fix this error? This is my xsd file.
Thank you.
http://www.w3.org/2001/XMLSchema“
xmlns=”urn:hl7-org:v2xml”
targetNamespace=”urn:hl7-org:v2xml”>
I think you need something like this:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema”
xmlns=”urn:hl7-org:v2xml” targetNamespace=”urn:hl7-org:v2xml”>
…