in reply to xml parsers: do I need one?

The XML file is used by major applications where I work for, and is not going to change for my new app.

Does that mean that they are not using XML parsers either? This is a Bad Thing:

If your new app does not use an XML parser either, that only contributes to the existing problem. It will need to be updated if the input file changes in format.

Replies are listed 'Best First'.
Re: Re: xml parsers: do I need one?
by regan (Sexton) on Aug 28, 2003 at 15:14 UTC
    sorry, the main app is written in java, uses the DOM parser, and parses and process what it needs in a couple of minutes. When I tried what I thought would be a really quick and dirty first pass using xml::Parse, it took 35 minutes!
    I want to do the right thing, and use a parser, but yowza! Maybe I should go back and look at my code, and see what I'm doing wrong.