Re: xalan with pull parser

2007-03-16 Thread David_Johnson
It performs well enough to saturate our I/O channels for mass ETL type work. :o) David Johnson Programmer Specialist J. B. Hunt Transport Information Services / GAR New Dev [EMAIL PROTECTED]

Off topic ...

2005-11-23 Thread David_Johnson
I would like to talk with someone who is responsible for maintaining the source repository and learn some of the issues and practices that make it possible to function as an open-source repository administrator. Thanks, David Johnson Programmer Specialist J. B. Hunt Transport Information Service

Copying namespaces forward from a source document

2005-09-21 Thread David_Johnson
Xalan version: 2.6.2 When I transform a document, I want to be able to make the transformation reversible. I am having issues with the namespaces that are in the original document. Since this transformation is specifically targeted at XML generated by Excel workbooks, the XML namespaces are con

Re: What is wrong with this transformation ... more info

2004-12-07 Thread David_Johnson
I think I identified the core of the problem: DOM2SAX.parse is failing on The problem is exposed in this snippet: case Node.TEXT_NODE: final String data = node.getNodeValue(); _sax.characters(data.toCharArray(), 0, data.length()); break; getNodeValue()

Re: Problems running working XSLT scripts underTRAX

2004-07-29 Thread David_Johnson
... nevertheless, when I prepended the jar files to bootclasspath, it worked. Problem resolved. Thanks David Johnson Programmer Analyst J. B. Hunt Transport Information Services / OPR New Dev [EMAIL

Re: Problems running working XSLT scripts underTRAX

2004-07-29 Thread David_Johnson
I have also confirmed that I am running the correct version of xalan by debugging into the xalan 2.6.0 source code. David Johnson Programmer Analyst J. B. Hunt Transport Information Services / OPR New Dev

Re: Problems running working XSLT scripts underTRAX

2004-07-29 Thread David_Johnson
Thanks for the response. We are using the "endorsed standards" mechanism to override this. The log indicates that we are using the correct xalan version. >From the configuration code: log.info( "JVM:\t" + System.getProperty("java.vm.vendor") + " " + System.getPr

Problems running working XSLT scripts underTRAX

2004-07-29 Thread David_Johnson
Situation: I have a set of XSLT scripts that function correctly under interpreted xalan. I am trying to test the performance benefit of shifting to the TRAX compiler. We are running three successive transformations (one to produce outbound data, two to take inbound data and convert it

Re: Parsing XML file retrieved through HTTP

2004-07-01 Thread David_Johnson
I a similar symptom recently when the file said it was in UTF-8 but a non-compliant XML parser only supported ISO-8859-1. Make sure that your character set encoding is correcton both sides. David Johnson Programmer Analyst J. B. Hunt Transport Information Services / OPR New Dev