Carl Christianson wrote: > thx that is exactly what I thought (and read in the docs). > The reason I asked was that I've been tasked with finding a way around that > behaviour for a bulk data loading program.
hi, if you require to do such recovery you will need to rely on ability of XML parser/undelrying tokenizer to move on to next token and continue parsing. if you still want ot find a way around this particular problem without need to preprocess input XML but just to do streaming input with error notification you may take a look Xerces2 XNI pull interface - when you enable "http://apache.org/xml/features/continue-after-fatal-error" you will be able to continue parsing after fatal error. thanks, alek ps. i will send a complete example how to do it drectly to you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
