Anyone know how to specify local schema files in style tasks?

style task lets you use xmlcatalog to use local DTDs, but I want to do the same
for XML Schema files.  xmlvalidate seems to have been updated to support
specifying schema locations via attribute elements but style task has not.  


Example XML (in.xml)
-----------------
<?xml version="1.0" encoding="UTF-8"?>
<xxx xmlns="http://someurl/file.xsd"; >
 <yyy/>
</xxx>

-------------------

Example ANT file
-----------------
  <style style="style.xsl" 
    in="in.xml" 
    out="out.xml">

    <!-- WANT TO DO THIS BUT CANT -->
    <attribute name="http://someurl/file.xsd"; value="local/file.xsd"/>

  </style>
  
-----------------



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to