This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Processing the XSL piping one XML to other XSL sheets


Hi,

I am trying to use the pipeDocument class of XALAN, for
one base XSL Sheet which calls other stylesheets using 
appropriate parameters for it.

What should be the java source code to invoke XALAN
with this base XSL Sheet. 

base XSL Sheet is something like : 
--
 <xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
                xmlns:pipe="xalan://PipeDocument"
                extension-element-prefixes="pipe">
...
<pipe:pipeDocument   source="source.xml" target="target.xml">
   <stylesheet href="ss1.xsl">
     <param name="param1" value="value1"/>
   </stylesheet>
   <stylesheet href="ss2.xsl">
     <param name="param1" value="value1"/>
     <param name="param2" value="value2"/>
   </stylesheet>
   <stylesheet href="ss1.xsl"/>     
</pipe:pipeDocument>

How to invoke XALAN to process the above?

Thanks and Regards,
Dhruvraj Singh


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]