Re: Updated benchmark results

2002-03-25 Thread Dennis Sosnoski
I'll do that for the next update. In the meantime, I'll go so far as to say that they're all in either milliseconds or bytes... :-) - Dennis [EMAIL PROTECTED] wrote: Dennis, Minor nit - could you add units (i.e. seconds, kbytes etc) to the graphs :-) Dw.

Re: Updated benchmark results

2002-03-25 Thread dirkx
Dennis, Minor nit - could you add units (i.e. seconds, kbytes etc) to the graphs :-) Dw. -- Dirk-Willem van Gulik On Mon, 25 Mar 2002, Dennis Sosnoski wrote: > Hi all, > > I've updated my Java XML document model benchmark results at > http://www.sosnoski.com/opensrc/xmlbench/index.html. Thes

Updated benchmark results

2002-03-25 Thread Dennis Sosnoski
Hi all, I've updated my Java XML document model benchmark results at http://www.sosnoski.com/opensrc/xmlbench/index.html. These show the issues with Xerces performance on small documents, especially when the deferred node expansion option is enabled (as it is by default). The performance tradeo

Re: DOM 3 DOMLocator.getErrorNode() Impl

2002-03-25 Thread Elena Litani
Yuri Gadow wrote: > Has in memory validation work begun > yet, or is it still planning stage? In other words, are there any > classes to look at to determine where to begin, after rolling up the > sleeves? No, we have not yet started to work on revalidation. It is on our to-do list. If you are int

Re: Working with 2 namespaces

2002-03-25 Thread David B. Bitton
local-name(.) -- David B. Bitton [EMAIL PROTECTED] www.codenoevil.com Code Made Fresh DailyT - Original Message - From: "Andreas Schlegel" <[EMAIL PROTECTED]> To: "xerces-j-list" <[EMAIL PROTECTED]> Sent: Sunday, March 24, 2002 4:18 PM Subject: Working with 2 namespaces > I am not sur

Re: DOM 3 DOMLocator.getErrorNode() Impl

2002-03-25 Thread Yuri Gadow
Elena, Thanks, that does help, though I really should have put those two together and got four myself. My own myopia aside, this is an area of functionality I need post-haste. Has in memory validation work begun yet, or is it still planning stage? In other words, are there any classes to look at t

Re: DOM 3 DOMLocator.getErrorNode() Impl

2002-03-25 Thread Elena Litani
Yuri hi, Yuri Gadow wrote: > Looking for verification that the getErrorNode functionality is not in > place for DOMLocator (other than having an accessor method and > constructor parameter.) That is, I cannot find where the errorNode is > ever set. If not, where might I start digging to determine

DOM 3 DOMLocator.getErrorNode() Impl

2002-03-25 Thread Yuri Gadow
Looking for verification that the getErrorNode functionality is not in place for DOMLocator (other than having an accessor method and constructor parameter.) That is, I cannot find where the errorNode is ever set. If not, where might I start digging to determine how to make it happen? Thanks, --

Re: Validating XML output from a DOM Tree

2002-03-25 Thread Elena Litani
Dave Barfield wrote: > With both of these methods I can recreate the original XML by recursing > through the tree and, for example, outputting the contents of the tree to a > StringBuffer. At this point the DOCTYPE line is gone as it doesn't appear > to have been stored in the DOM Tree. What do

Validating XML output from a DOM Tree

2002-03-25 Thread Dave Barfield
Hello, Does anyone know how to solve the following problem? I can create a DOM tree to match a DTD by using the createElement and appendChild methods and I can also create the DOM Tree by using the DOMParser.parse methods against an XML document that contains a element. With both of these meth

Re: Custom parser configuration for Schema validation only

2002-03-25 Thread Elena Litani
Amar, Amar Basu wrote: > Is it possible to define a custom parser configuration that will > validate against schemas only, and not DTD's? Yes, it is possible. xerces.parsers.StandardParserConfiguration has a method configurePipeline() that configures the pipeline. You need to either extend this