472,328 Members | 1,728 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,328 software developers and data experts.

SAX parsing problem

I have the following XML string that I want to parse using the SAX
parser. If I remove the portion of the XML string between the <audit>
and </audit> tags the SAX is parsing correctly. Otherwise SAX wouldn't
do the parsing. What's wrong with this string (between <audit> and
</audit> tags)?
I am using SAX/Xerces 2.3.0 on Sun 8.
Thanks in advance of any help. Nick Roman

<?xml version="1.0" encoding="UTF-8"?> <lyr3:L3Transaction
xmlns:lyr3="urn:layer.three.activation"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<audit>15:35:05 emsTransaction::setState TRANS_PENDING 15:35:06
emsRequest::setUndoable id(1502d70) request is undoable 15:35:06
emsRequest::setState id(1502d70) pending (waiting for response from
'') 15:35:06 emsRequest::setState id(1502d70) pending (response
'Enter password: a') 15:35:06 emsRequest::setState id(1502d70) pending
(waiting for response from 'cisco') 15:35:06 emsRequest::setState
id(1502d70) pending (response 'sangria2') 15:35:06
emsRequest::setState id(1502d70) pending (waiting for response from
'enable') 15:35:06 emsRequest::setState id(1502d70) pending (response
'Enter password:') 15:35:06 emsRequest::setState id(1502d70) pending
(waiting for response from 'cisco') 15:35:06 emsRequest::setState
id(1502d70) pending (response 'sangria2 (enable)') 15:35:06
emsRequest::setState id(1502d70) pending (waiting for response from
'set length 0') 15:35:06 emsRequest::setState id(1502d70) pending
(response 'sangria2 (enable)') 15:35:06 emsRequest::setState
id(1502d70) pending (waiting for response from 'show version')
15:35:07 emsRequest::setState id(1502d70) pending (response 'sangria2
(enable)') 15:35:07 emsRequest::setState id(1502d70) pending (waiting
for response from 'show running-config') 15:35:10 emsRequest::setState
id(1502d70) pending (response 'sangria2 (enable)') 15:35:10
emsRequest::setState id(1502d70) pending (waiting for response from
'show vlan') 15:35:10 emsRequest::setState id(1502d70) pending
(response 'sangria2 (enable)') 15:35:10 emsRequest::setState
id(1502d70) complete ((cli6509v1Anchor) complete) 15:35:10
emsRequest::setUndoable id(159b780) request is undoable 15:35:10
emsRequest::setState id(159b780) pending (waiting for response from
'set vlan 667 name test-vlan type ethernet mtu 1500 said 100667
state active') 15:35:10 emsRequest::setObjectAltered request will
require undo during rollback 15:35:10 emsRequest::setState
id(159b780) pending (response 'Vlan 667 configuration successful')
15:35:10 emsRequest::setState id(159b780) ((cli6509v1AddVlan)
complete) 15:35:10 emsTransaction::setState TRANS_COMPLETE</audit>
<statuscode>4</statuscode>
<request>
<requestType action="add" type="vlan"/>
</request>
</lyr3:L3Transaction>
Jul 20 '05 #1
4 2213
th*************@yahoo.com (silviu) writes:
I have the following XML string that I want to parse using the SAX
parser. If I remove the portion of the XML string between the <audit>
and </audit> tags the SAX is parsing correctly. Otherwise SAX wouldn't
do the parsing. What's wrong with this string (between <audit> and
</audit> tags)?


I can see nothing wrong with what you posted. Can you let us know
what error message you got?
All the best,
David
Jul 20 '05 #2
Hi David,

Thanks a lot for you answering my question.
Following the required info:
1. If <audit>...</audit> tags are NOT present in the string
then SAX parses correctly the XML string.
2. If <audit>...</audit> info ARE present in the string
then SAX parser will not do nothing; i.e. nothing will happen and
no error messages will be issued.

So, I my opinion, <audit>...</audit> info causes SAX parser to
misbehave. The question I have is: what is wrong with
<audit>...</audit> info?
Thanks,
Silviu

David Megginson <no****@attglobal.net> wrote in message news:<87************@megginson.com>...
th*************@yahoo.com (silviu) writes:
I have the following XML string that I want to parse using the SAX
parser. If I remove the portion of the XML string between the <audit>
and </audit> tags the SAX is parsing correctly. Otherwise SAX wouldn't
do the parsing. What's wrong with this string (between <audit> and
</audit> tags)?


I can see nothing wrong with what you posted. Can you let us know
what error message you got?
All the best,
David

Jul 20 '05 #3
th*************@yahoo.com (silviu) writes:
Thanks a lot for you answering my question.
Following the required info:
1. If <audit>...</audit> tags are NOT present in the string
then SAX parses correctly the XML string.
2. If <audit>...</audit> info ARE present in the string
then SAX parser will not do nothing; i.e. nothing will happen and
no error messages will be issued.


That sounds like a software bug. Try a different SAX parser and see
what happens.
All the best,
David
Jul 20 '05 #4
"silviu" <th*************@yahoo.com> wrote in message
news:f5**************************@posting.google.c om...
Hi David,

Thanks a lot for you answering my question.
Hi Silviu,

But you didn't answer David's question. What error message are you getting?
I can tell you for a fact that the latest version of Xerces has no problem
with your document. AFAIK, there isn't any problem.

Bob Foster
Following the required info:
1. If <audit>...</audit> tags are NOT present in the string
then SAX parses correctly the XML string.
2. If <audit>...</audit> info ARE present in the string
then SAX parser will not do nothing; i.e. nothing will happen and
no error messages will be issued.

So, I my opinion, <audit>...</audit> info causes SAX parser to
misbehave. The question I have is: what is wrong with
<audit>...</audit> info?
Thanks,
Silviu

David Megginson <no****@attglobal.net> wrote in message

news:<87************@megginson.com>...
th*************@yahoo.com (silviu) writes:
I have the following XML string that I want to parse using the SAX
parser. If I remove the portion of the XML string between the <audit>
and </audit> tags the SAX is parsing correctly. Otherwise SAX wouldn't
do the parsing. What's wrong with this string (between <audit> and
</audit> tags)?


I can see nothing wrong with what you posted. Can you let us know
what error message you got?
All the best,
David

Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

303
by: mike420 | last post by:
In the context of LATEX, some Pythonista asked what the big successes of Lisp were. I think there were at least three *big* successes. a....
16
by: Terry | last post by:
Hi, This is a newbie's question. I want to preload 4 images and only when all 4 images has been loaded into browser's cache, I want to start a...
3
by: uestebanez | last post by:
Hi everybody! I have a little problem working with libxml SAX API. The problem is that I don't know how to stop parsing when I have processed the...
5
by: gamehack | last post by:
Hi all, I was thinking about parsing equations but I can't think of any generic approach. Basically I have a struct called math_term which is...
9
by: ankitdesai | last post by:
I would like to parse a couple of tables within an individual player's SHTML page. For example, I would like to get the "Actual Pitching...
3
by: toton | last post by:
Hi, I have some ascii files, which are having some formatted text. I want to read some section only from the total file. For that what I am doing...
3
by: Anup Daware | last post by:
Hi Group, I am facing a strange problem here: I am trying to read xml response from a servlet using XmlTextWriter. I am able to read the read...
13
by: Chris Carlen | last post by:
Hi: Having completed enough serial driver code for a TMS320F2812 microcontroller to talk to a terminal, I am now trying different approaches to...
1
by: Philip Semanchuk | last post by:
On Oct 12, 2008, at 5:25 AM, S.Selvam Siva wrote: Selvam, You can try to find them yourself using string parsing, but that's difficult. The...
2
by: Felipe De Bene | last post by:
I'm having problems parsing an HTML file with the following syntax : <TABLE cellspacing=0 cellpadding=0 ALIGN=CENTER BORDER=1 width='100%'> <TH...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.