Using a different XSLT Transformer in 2.2
Neil Dixon <[email protected]>
| Newsgroups | gmane.text.xml.cocoon.user |
|---|---|
| Message-ID | <[email protected]> |
Hi,
I'm currently porting an application from 2..12 to 2.2. In 2.1.12 I
defined use of saxon in cocooon.xconf.
<component class="org.apache.excalibur.xml.xslt.XSLTProcessorImpl"
logger="core.xslt-processor"
role="org.apache.excalibur.xml.xslt.XSLTProcessor/saxon">
<parameter name="use-store" value="true"/>
<parameter name="incremental-processing" value="false"/>
<parameter name="transformer-factory"
value="net.sf.saxon.TransformerFactoryImpl"/>
</component>
In 2.2, I'm trying to define the same in my applicationContext.xml
<bean name="org.apache.excalibur.xml.xslt.XSLTProcessor/saxon"
class="org.apache.excalibur.xml.xslt.XSLTProcessorImpl"
scope="singleton">
</bean>
The question is how do I pass the parameter values use-store, etc in?