Using xslt to transform multiple xml schema documents
Using xslt to transform multiple xml schema documents I have a number of xml schema documents which are used to describe configuration settings for my application. The xml schemas look something along the following lines: Client.xsd <xsd:schema targetNamespace="http://www.example.com/network" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:complexType name="Client"> <xsd:attribute name="Host" type="xsd:string> </xsd:complexType> </xsd:schema> Server.xsd <xsd:schema targetNamespace="http://www.example.com/network" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:complexType name="Server"> <xsd:attribute name="Port" type="xsd:unsignedShort> <xsd:attribute name="MaxConnections" type="xsd:int default="32"> </xsd:complexType> </xsd:schema> Appli...
