Re: Expat-discuss Digest, Vol 70, Issue 4
| Newsgroups | gmane.text.xml.expat.general |
|---|---|
| Message-ID | <OF18B914F2.4B77521B-ON852570F9.004778D0-852570F9.00476603@mro.com> |
> ------------------------------ > > Message: 2 > Date: Mon, 16 Jan 2006 14:15:03 -0500 > From: R?gis St-Gelais (Laubrass) <[email protected]> > Subject: Re: [Expat-discuss] expat can I use this to.. > To: [email protected] > Message-ID: <00cf01c61ad1$287103a0$6400a8c0@laubrasssag1> > Content-Type: text/plain; format=flowed; charset=iso-8859-1; > reply-type=original > > ----- Original Message ----- > >From: [email protected] > >To: [email protected] > >Sent: Monday, January 16, 2006 8:07 AM > >Subject: [Expat-discuss] expat can I use this to.. > > > > > > > >Greetings. > > > >Is it possible to use expat to create xml strings and send them as > >parameter values in a c++ application, then use expat to parse them on the > >receiving end without ever actually creating a file? If so a starter > >suggestion would be appreciated. > > > >thanks > > > >Jeff Kish > > > Jeff, > > expat is not "file aware". > It does not care where the XML data is comming from. > You simply call XML_Parse with your XML data to parse (or part of it) in a > buffer. > > R?gis St-Gelais > > > > expat is a parser, it can only "read" XML. > > I usualy create the XLM file manualy using printf. > > Regis St-Gelais Thanks both.