t;[EMAIL PROTECTED]>
|
| cc:
|
| Subject: Quick, Simple question. PLE
HI,
How to parse an XML that is in memory using DOM. For SAX I remember using
MemBufInputSource..
I just dont remember... quick answers, please
-Vinayak
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands,
PROTECTED]]
Sent: Viernes, 27 de Abril de 2001 03:12 p.m.
To: '[EMAIL PROTECTED]'
Subject: RE: simple question.
Hello Alfredo:
Here's how you can get the name of the DTD, that is, the name immediately
following the DOCTYPE keyword in an XML source document:
DOMString GetDoc
Hello Alfredo:
Here's how you can get the name of the DTD, that is, the name immediately
following the DOCTYPE keyword in an XML source document:
DOMString GetDoctypeName( const DOM_Document& doc )
{
DOM_DocumentType doctype = doc.getDoctype();
if( doctype.isNull() )
How I get the DOCTYPE and the name of the external DTD in use?
In the example below:
..
I need to pass to my application both , the name after !DOCTYPE and the DTD
referenced after SYSTEM.
Many thanks in advance
Alfredo
---