DOM_DocumentType::getEntities()

2001-05-05 Thread Jason E. Stewart
Hey, I'm attempting to retrieve the entities defined in the internal subset of my documents doctype. I get a NamedNodeMap with the correct entries, having the correct node names, but all the node values are null??? Is there some trick I'm unaware of for getting the entity values to print? Than

Re: Ponters to Parser

2001-05-05 Thread Dean Roddey
Well... ummm the parser provides SAX and DOM based parsers, and that's *exactly* what DOM or SAX do. So the answer would be yes. -- Dean Roddey The CIDLib C++ Frameworks Charmed Quark Software [EMAIL PROTECTED] http://www.charmedquark.com "Why put off until tomorrow what

Re: Xerces 1.4.0 DOMParser: non-validating parse of an XML doc with aDOCTYPE line

2001-05-05 Thread Dean Roddey
It will handle the DTD when not validating. The issue is whether the DTD is actually available to parse or not. Is it? The parse will try to open the DTD even if not validating, because DTDs often have information not related to validation. -- Dean Roddey The CIDLib C++ Fr

Re: how to use XMLNetAccessor?

2001-05-05 Thread Dean Roddey
It will try to see if the system id is relative or fully qualified. If its relative, then its relative to its parent entity. If its parent entity is a file, then it assumes the new one is a file also (relative to the parent entity's file.) If the parent is a URL, then its assumes the new one is a

Re: how to use XMLNetAccessor?

2001-05-05 Thread Dean Roddey
It will try to see if the system id is relative or fully qualified. If its relative, then its relative to its parent entity. If its parent entity is a file, then it assumes the new one is a file also (relative to the parent entity's file.) If the parent is a URL, then its assumes the new one is a

Ponters to Parser

2001-05-05 Thread kalpesh_solanki
Hi, We need to Parse an XML document, get all the tag names and values and then fill up a new data structure.We want to know is there any code available which takes xml file and gives tag name and tag values as the output using either sax or DOM model. We are going to use xerces using C++ on HP-

Mail Archive?

2001-05-05 Thread Dee Jay Randall
Is there a mail archive? http://archive.covalent.net/ doesn't seem to work Please subscribe me to this list or provide a pointer. I would like to be able to use Xerces-C++ with "gcc version 2.95.2 19991024 (release)" on a Sun machine: `uname -a` == "SunOS hostname 5.7 sun4u sparc SUN

Xerces 1.4.0 DOMParser: non-validating parse of an XML doc with a DOCTYPE line

2001-05-05 Thread Fred 17
I have a document with a DOCTYPE line. I'm trying to parse this doc (using DOMParser) to get some values from it. However, for reasons I won't go into, the doc has already been validated, so I'm doing a non-validating parse (setDoValidation(false)). The parser seems to get very confused by the DOC

Re: how to use XMLNetAccessor?

2001-05-05 Thread dave yuill
> > is it safe to say that its not even trying to use my class? > > > > thanks again, i must be missing somthing setting it up... maybe.. ? > > > > It wouldn't be calling it, because its treating that URL as a relative file > path. Somehow, the URL code must not be reporting it as a fully qualifi

Re: how to use XMLNetAccessor?

2001-05-05 Thread Dean Roddey
> oh yeah, i intended to do that... but its not even running that code, i had > compiled a cout line in it to see, and it never showed... so humm? > > plus the addition of the ./ had me extremly suspicious... is it safe to say > that its not even trying to use my class? > > thanks again, i must be