RE: using both Xalan and Saxon with C3

2012-12-07 Thread Robby Pelssers
rmer using Xalan to do the indentation, my problem would be solved. Robby -Original Message- From: Mansour Al Akeel [mailto:mansour.alak...@gmail.com] Sent: Friday, December 07, 2012 1:45 AM To: users@cocoon.apache.org Cc: d...@cocoon.apache.org Subject: Re: using both Xalan and Saxon with

Re: using both Xalan and Saxon with C3

2012-12-06 Thread Mansour Al Akeel
ly in 1 pipeline. >> > >> > But thx for thinking along. >> > Robby >> > >> > -Original Message- >> > From: Mansour Al Akeel [mailto:mansour.alak...@gmail.com] >> > Sent: Thursday, December 06, 2012 5:00 AM >> > To: users@

Re: using both Xalan and Saxon with C3

2012-12-06 Thread gelo1234
t: Thursday, December 06, 2012 5:00 AM > > To: users@cocoon.apache.org > > Cc: d...@cocoon.apache.org > > Subject: Re: using both Xalan and Saxon with C3 > > > > If I am not wrong, you can always change the implementation for the xslt > processor in the final WAR file by setting: >

Re: using both Xalan and Saxon with C3

2012-12-06 Thread Mansour Al Akeel
thinking along. > Robby > > -Original Message- > From: Mansour Al Akeel [mailto:mansour.alak...@gmail.com] > Sent: Thursday, December 06, 2012 5:00 AM > To: users@cocoon.apache.org > Cc: d...@cocoon.apache.org > Subject: Re: using both Xalan and Saxon with C3 >

RE: using both Xalan and Saxon with C3

2012-12-05 Thread Robby Pelssers
: Re: using both Xalan and Saxon with C3 If I am not wrong, you can always change the implementation for the xslt processor in the final WAR file by setting: META-INF/services/javax.xml.transform.TransformerFactory This is simple and clean. On Wed, Dec 5, 2012 at 5:21 AM, Robby Pelssers wrote

Re: using both Xalan and Saxon with C3

2012-12-05 Thread Mansour Al Akeel
If I am not wrong, you can always change the implementation for the xslt processor in the final WAR file by setting: META-INF/services/javax.xml.transform.TransformerFactory This is simple and clean. On Wed, Dec 5, 2012 at 5:21 AM, Robby Pelssers wrote: > I did some investigation into this ma

RE: using both Xalan and Saxon with C3

2012-12-05 Thread Robby Pelssers
I did some investigation into this matter and the problem is in org.apache.cocoon.sax.component.XSLTTransformer It has two constructor methods: public XSLTTransformer(final URL source) { this(source, null); } And public XSLTTransformer(final URL source, final Map attributes