Message: A new issue has been created in JIRA.
--------------------------------------------------------------------- View the issue: http://issues.apache.org/jira/browse/XALANJ-1944 Here is an overview of the issue: --------------------------------------------------------------------- Key: XALANJ-1944 Summary: Xalan - jre1.4.2_05 compatibility Type: Bug Status: Unassigned Priority: Major Project: XalanJ2 Components: Serialization Versions: 2.5 Assignee: Reporter: amit arora Created: Wed, 15 Sep 2004 9:16 PM Updated: Wed, 15 Sep 2004 9:16 PM Environment: Jre1.4.2_05 , win 2000 Description: making an xml output stream from an APPLET with DOM and javax.xml.transform.Transformer: all works very fine with VM 1.4.2_0x since 1.4.2_05 now with VM 1.4.2_05 there is a java.lang.IllegalAccessError on the second line. ... String url= codeBase+"org/apache/xalan/serialize/XMLEntities.res"; org.apache.xalan.serialize.CharInfo.XML_ENTITIES_RESOURCE = url; javax.xml.transform.Transformer transformer = javax.xml.transform.TransformerFactory.newInstance().newTransformer(); transformer.setOutputProperty( OutputKeys.INDENT, "yes"); PrintWriter out = new PrintWriter ( connection.getOutputStream(), true); javax.xml.transform.dom.DOMSource source = new javax.xml.transform.dom.DOMSource( doc.getFirstChild() ); javax.xml.transform.stream.StreamResult result = new javax.xml.transform.stream.StreamResult( out ); transformer.transform( source, result);.... I tried to use the transformer without the org.apache.xalan.serialize.CharInfo.XML_ENTITIES_RESOURCE but does not work . can u give me any suggestion to solve that issue , i can't use xalan2.6.0 as i have to put that into endorsed directory into jre . which i can't do on client's machine . so can there be any workaround for that . --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
