dwatson06 has asked for the wisdom of the Perl Monks concerning the following question:
I am writing a server that will need to take in an XML document. This document contains only one tag per name value.
ie
Do you have any suggestions on what XML package to use?
Thank you,
DWW
ie
<USER> <LOGIN _AgeAtApplicationYears="33" firstName="Alice" lastName="Firsti +mer" address="111 test street" state="HI" zip="11111" phone="111-111- +1111" userName="testUser"> </LOGIN> </USER>
There will be only one USER coming in from the client at a time.
I am using Active Perl and currently looking at XML::Parser::Lite but it is space delimiting all values within the LOGIN tag. This throws off the addresses because there's spaces within the value.
I've seen several packages for parsing values that are assigned between the opening and closing tags but not ones embedded within the opening tag. (all the value assigments in the LOGIN tag.)
Do you have any suggestions on what XML package to use?
Thank you,
DWW
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: XML package for parsing values in the opening tag.
by gjb (Vicar) on Apr 14, 2004 at 14:04 UTC | |
by dwatson06 (Friar) on Apr 14, 2004 at 14:30 UTC | |
Re: XML package for parsing values in the opening tag.
by mirod (Canon) on Apr 14, 2004 at 14:20 UTC | |
by dwatson06 (Friar) on Apr 14, 2004 at 15:13 UTC | |
by gmpassos (Priest) on Apr 15, 2004 at 07:11 UTC | |
by waswas-fng (Curate) on Apr 14, 2004 at 18:28 UTC | |
Re: XML package for parsing values in the opening tag.
by matija (Priest) on Apr 14, 2004 at 14:03 UTC |
Back to
Seekers of Perl Wisdom