I am trying to run an XSLT on a schema (XSD) file. The schema file has a "xsd:includ e" tag that includes another XSD file. When I load the schema in XML editors like XML Spy the data from all of the files is loaded. When I run the XSL translation only the XSD data from the first file is loaded and translated. The data from the file referenced in the included tag is skipped.
Anyone have any ideas why?
Example XSD file
Anyone have any ideas why?
Example XSD file
Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?> <xsd:schema targetNamespace="http://ACORD.org/Standards/Life/2" xmlns="http://ACORD.org/Standards/Life/2" elementFormDefault="unqualified" attributeFormDefault="unqualified" version="2.18.00" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:include schemaLocation="XMLife2.18.00.xsd" /> <xsd:element name="ChangeSubType" type="ChangeSubType_Type" /> ..... ..... ..... </xsd:schema>
Comment