You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by "Maenkova, Evgeniya G" <ev...@intel.com> on 2007/02/22 15:14:05 UTC

FW: [jira] Updated: (HARMONY-3209) Harmony's default instance of javax.xml.TransformerFactory differs from RI's one

Hi all.
Actually my patch will work only on DRLVM + Harmony's classlib...

One more way to configure this feature could be changing some build
scripts to extract xalan.jar and change META-INF/services.

Does anybody know any better solution?
What do you think?

Thanks,
Evgeniya

-----Original Message-----
From: Evgeniya Maenkova (JIRA) [mailto:jira@apache.org] 
Sent: Tuesday, February 20, 2007 7:15 PM
To: commits@harmony.apache.org
Subject: [jira] Updated: (HARMONY-3209) Harmony's default instance of
javax.xml.TransformerFactory differs from RI's one


     [
https://issues.apache.org/jira/browse/HARMONY-3209?page=com.atlassian.ji
ra.plugin.system.issuetabpanels:all-tabpanel ]

Evgeniya Maenkova updated HARMONY-3209:
---------------------------------------

    Attachment: set_property.patch

to set system property for TransformerFactory

> Harmony's default instance of javax.xml.TransformerFactory differs
from RI's one
>
------------------------------------------------------------------------
--------
>
>                 Key: HARMONY-3209
>                 URL:
https://issues.apache.org/jira/browse/HARMONY-3209
>             Project: Harmony
>          Issue Type: Bug
>          Components: Misc
>            Reporter: Evgeniya Maenkova
>         Attachments: set_property.patch
>
>
> Xalan provides both a compiler and a runtime processor.
> Interpretive processor is used by defaut in xalan's distribution
unlike SUN's jdk, which uses XSLT compiler.
> So Harmony uses "interpreter" mode now.
> This change could be done by setting of system property.
> See please more info at
http://xml.apache.org/xalan-j/xsltc_usage.html.
> The test to see this is:
> import javax.xml.parsers.DocumentBuilderFactory;
> import javax.xml.parsers.SAXParserFactory;
> import javax.xml.transform.TransformerFactory;
> public class TransformerFactoryTest {
> 	public static void main(String[] args) {
> 		System.out.println(TransformerFactory.newInstance());

>
System.out.println(DocumentBuilderFactory.newInstance());
> 		System.out.println(SAXParserFactory.newInstance());
> 	}
> }
> RI prints:
>
com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl@2474
01
>
com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl@247ef
f
> com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl@2483b5
> unlike Harmony:
> org.apache.xalan.processor.TransformerFactoryImpl@206b9400
> org.apache.xerces.jaxp.DocumentBuilderFactoryImpl@206c004c
> org.apache.xerces.jaxp.SAXParserFactoryImpl@206c46a8.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.