Thread overview
XML Parser?
Jan 15, 2007
Graham MacDonald
Jan 16, 2007
Lutger
Jan 16, 2007
Laurent Dubuisson
Jan 16, 2007
KlausO
Jan 16, 2007
Laurent Dubuisson
Jan 16, 2007
Graham MacDonald
January 15, 2007
What's the best choice for a (preferably fast & simple!) xml parser for D?

Thanks.
January 15, 2007
Graham MacDonald schrieb:
> What's the best choice for a (preferably fast & simple!) xml parser for D?
> 
> Thanks.

I know of these pure D xml parsers:
the xml parsers in the mango project.
the xml parser in the enki project on dsource.org.


January 16, 2007
Graham MacDonald wrote:
> What's the best choice for a (preferably fast & simple!) xml parser for D?
> 
> Thanks.

I was quite happy with XML sax api in mango, easy and very fast (if it fits with your needs of course).
January 16, 2007
Hi,

Sax parser very easy parser to implement.

As anyone implemented Dom one ?

Regards,
Laurent.
January 16, 2007
Laurent Dubuisson schrieb:
> Hi,
> 
> Sax parser very easy parser to implement.
> 
> As anyone implemented Dom one ?
> 
> Regards,
> Laurent.

Wiki4D is your friend :-)
See

http://www.prowiki.org/wiki4d/wiki.cgi?AllLibraries/XmlLibraries
January 16, 2007
KlausO wrote:

> Wiki4D is your friend :-)
> See
> 
> http://www.prowiki.org/wiki4d/wiki.cgi?AllLibraries/XmlLibraries

Thanks, I used t to locate the Mango tree :-)

I'm more on see the example/extrapolate and use. Then if you have more example of Dom parser I will be glad :-)

Cheers,
Laurent.
January 16, 2007
KlausO wrote:
> Laurent Dubuisson schrieb:
>> Hi,
>>
>> Sax parser very easy parser to implement.
>>
>> As anyone implemented Dom one ?
>>
>> Regards,
>> Laurent.
> 
> Wiki4D is your friend :-)
> See
> 
> http://www.prowiki.org/wiki4d/wiki.cgi?AllLibraries/XmlLibraries


Yup, I noticed that and went for TinyXML LED instead.  Nice and small, no libraries to bind to, so was pretty much ideal.

Thanks,
g