mwinterer has asked for the wisdom of the Perl Monks concerning the following question:
I am getting a strange behavior with XML::Parser (v. 2.40) . This is on a Solaris 10 system. When parsing a file the last few days there have been a few odd cases where and attribute is parsed twice (or maybe split). Not sure how to describe. This only occurs once in a while.
The issue occurs in the "hdl_char" routine. This is a simple sub that just assigns values to a hash array where the hash elements are the attribute names for later processing.
Here is the output of printing each call to hdl_char with the attrib=value pairs. Note the "..." are added to check for blank padding. Note the first case of sessionStartDateTime where the actual value has been split which results in the last value "Z" being assigned to the hash. The second attribute sessionEndDateTime is correctly parse. I have check the source file and there are no spurious characters. I have listed part of the source record below also.
currattr:GMTSessionStartDateTime = ... currattr:GMTSessionStartDateTime = ... currattr:sessionStartDateTime = 2013-09-10T17:15:00.000... currattr:sessionStartDateTime = Z... currattr: = ... currattr: = ... currattr:timeZoneOffset = -240... currattr: = ... currattr: = ... currattr: = ... currattr: = ... currattr:GMTSessionEndDateTime = ... currattr:GMTSessionEndDateTime = ... currattr:sessionEndDateTime = 2013-09-10T17:30:00.000Z... currattr: = ... currattr: = ... currattr:timeZoneOffset = -240...
<ns0:GMTSessionStartDateTime> <ns0:sessionStartDateTime>2013-09-10T17:15:00.000Z</ns0:sessionStartDa +teTime> <ns0:timeZoneOffset>-240</ns0:timeZoneOffset> </ns0:GMTSessionStartDateTime> <ns0:GMTSessionEndDateTime> <ns0:sessionEndDateTime>2013-09-10T17:30:00.000Z</ns0:sessionEndDateTi +me> <ns0:timeZoneOffset>-240</ns0:timeZoneOffset> </ns0:GMTSessionEndDateTime>
This is an intermittent problem but is causing real issues for me at this point. Since this handler is called by the parser then I am making an assumption this is a parser issue. I am using Expat also.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML::Parser error
by runrig (Abbot) on Sep 11, 2013 at 18:23 UTC | |
by mwinterer (Initiate) on Sep 11, 2013 at 21:50 UTC | |
by runrig (Abbot) on Sep 11, 2013 at 22:02 UTC | |
|
Re: XML::Parser error (not)
by Anonymous Monk on Sep 11, 2013 at 22:36 UTC | |
by mwinterer (Initiate) on Sep 12, 2013 at 14:48 UTC |