I'm trying to get the example at http://www-106.ibm.com/developerworks/java/library/x-tipjdom.html working. The basic idea is to take an xml document and then transform it into another xml document using a stylesheet. I am then trying to display the new document. I keep receiving the following errors at runtime:
The line numbers in the errors won't map to the code below, but line #83 is the line that reads: resultDoc = saxBuilder.build(resultIn); Here are the relevant portions of my code:
Here is car.xml
and car.xsl
I am XML clueless, so any help would be greatly appreciated. Thanks, Jason
[This message has been edited by Jason Menard (edited June 26, 2001).]
Guess I'll answer my own question. There was something wrong with the XML and/or XSL files. It was just a test so I grabbed some sample files from elsewhere. The other problem with the code was the Piped Streams. These can cause a thread deadlock if used in the same thread. The answer (without resorting to multithreading) was to use ByteArray Streams.