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
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
> 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
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