Re: Quick, Simple question. PLEASE try to reply fast...

2003-08-20 Thread Neil Graham
t;[EMAIL PROTECTED]> | | cc: | | Subject: Quick, Simple question. PLE

Quick, Simple question. PLEASE try to reply fast...

2003-08-20 Thread vinayak
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,

RE: simple question.

2001-04-27 Thread Alfredo Munoz
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

RE: simple question.

2001-04-27 Thread Doug Brower
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() )

simple question.

2001-04-27 Thread Alfredo Munoz
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 ---