Processing xsd with xsl without namespaces

I have a problem with processing xsd using xsl. My xsd file begins:\[code\]<schema targetNamespace="http://www.bleble.com"xmlns="http://www.w3.org/2001/XMLSchema"><complexType name="blabla">...\[/code\]so there's no namespace to recognize tags by xsl.I can't modify xsd files, because there's a lot of code and a lot of files, so only possible way is to create a suitable xsl transformation file.I've been trying to add namespace:\[code\]xmlns:xsd="http://www.w3.org/2001/XMLSchema">\[/code\]without adding it to tags:\[code\]<complexType name="blabla">\[/code\]but it it's not valid with xml standard.Thanks for help!
 
Back
Top