Apache AXIS version in CF9 and CF8?

2010-02-26 Thread Reed Powell
Anyone know for sure what versions of Axis are in CF8 and CF9? Or how to get Cf to expose that info? Am having parsing problems with a third party XML file, and they're curious as to what version is having the problems. They're putting a line like this after the first line of the file (ie,

Re: Apache AXIS version in CF9 and CF8?

2010-02-26 Thread Dave Watts
Anyone know for sure what versions of Axis are in CF8 and CF9?  Or how to get Cf to expose that info?  Am having parsing problems with a third party XML file, and they're curious as to what version is having the problems.  They're putting a line like this after the first line of the file

Re: Apache AXIS version in CF9 and CF8?

2010-02-26 Thread Reed Powell
Right Dave, I got my wires crossed there. I remember reading something a few years ago about being to replace the xml parser that comes with CF with one of a couple of others - do you know which parse is the one the comes with CF9 (or Cf8, I doubt that it has changed)? thanks -reed

Re: Apache AXIS version in CF9 and CF8?

2010-02-26 Thread Pete Freitag
Hi Reed, I believe ColdFusion uses the JAXP (Java API For XML Parsing) which uses Apache Xerces on Java 1.5, 1.6 as the default DOM parser. Java 1.4 uses Apache Crimson as the default DOM parser. I have found the current versions of Java 1.6 use Xerces 2.6.2 You can run this code to find out

Re: Apache AXIS version in CF9 and CF8?

2010-02-26 Thread Reed Powell
Thanks for all the info Pete. I'm running CF9, so that's Java 1.6, and it uses Xerces 2.9.1, which seems to be the latest. Interesting that you were able to parse the xml using java 1.5 - maybe I'll give this a try on a CF8 box. I'll probably end up doing the stripping of that line, but it's