Re: Parsing XML Strings

2000-02-04 Thread roddey
licon Valley [EMAIL PROTECTED] "Eric Ulevik" <[EMAIL PROTECTED]> on 02/03/2000 04:04:29 PM Please respond to [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> cc: Subject: Re: Parsing XML Strings From: Michael Mason <[EMAIL PROTECTED]> > > What is the right way to p

Re: Parsing XML Strings

2000-02-04 Thread Eric Ulevik
From: Michael Mason <[EMAIL PROTECTED]> > > What is the right way to parse a XML string using Xerces-c? > > I would like to process XML from char*, std::string, wchar_t*. > > You can use MemBufInputSource like this: > > SAXParser *parser = new SAXParser(); > MemBufInputSource *memBufIS = new MemB

Re: Parsing XML Strings

2000-02-03 Thread Michael Mason
> Eric Ulevik wrote: > > What is the right way to parse a XML string using Xerces-c? > > I would like to process XML from char*, std::string, wchar_t*. You can use MemBufInputSource like this: SAXParser *parser = new SAXParser(); [etc, set up parser properly] char* xml_buf = " my xml document

Parsing XML Strings

2000-02-03 Thread Eric Ulevik
What is the right way to parse a XML string using Xerces-c?   I would like to process XML from char*, std::string, wchar_t*.   Thanks, Eric Ulevik