Re: CData section

2004-11-24 Thread Gareth Reakes
< becomes &lt;. Thanks, Frank -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 3:13 AM To: [EMAIL PROTECTED] Subject: Re: CData section Hi, Do you mean you get the result when you serialize, or in the event in your

RE: CData section

2004-11-24 Thread Xiaofan Zhou
I got it in mu event handler, so when I serialize it I got a problem, like < becomes &lt;. Thanks, Frank -Original Message- From: Gareth Reakes [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 3:13 AM To: [EMAIL PROTECTED] Subject: Re: CData section Hi,

Re: CData section

2004-11-24 Thread Gareth Reakes
Hi, Do you mean you get the result when you serialize, or in the event in your handler? Gareth On 24 Nov 2004, at 6:56, Xiaofan Zhou wrote:   Hi All,     I am using the Xerces c++ SAX parser to parse my xml file.  I have a question regarding CData section, here is the example

CData section

2004-11-23 Thread Xiaofan Zhou
  Hi All,     I am using the Xerces c++ SAX parser to parse my xml file.  I have a question regarding CData section, here is the example:             I would expect the characters event after the startElement event will give me the unchanged value Customer, however, what I

Re: CData section

2004-11-05 Thread david_n_bertoni
> I have a question regarding CData Section, say I have an element > in XML defined as following: > > > > > > When I use the SAX parser in Xerces-c, I got the character data for the element "Customer", > is this the expected behavior? Yes. >

CData section

2004-11-05 Thread Xiaofan Zhou
Hi, All,   I have a question regarding CData Section, say I have an element in XML defined as following:      When I use the SAX parser in Xerces-c, I got the character data for the element "Customer", is this the expected behavior? I thought the data should be the w

[jira] Commented: (XERCESC-1295) DOMWriter unlimited loop when document has CDATA section

2004-10-29 Thread Alberto Massari (JIRA)
compiler used by Xerces, or you get undefined behaviours by mixing code generated by two different compilers. If you want to use xlC_r you should download the sources for Xerces and build it on your own. Hope this helps, Alberto > DOMWriter unlimited loop when document has CDATA sect

[jira] Commented: (XERCESC-1295) DOMWriter unlimited loop when document has CDATA section

2004-10-29 Thread youaremissed (JIRA)
, anything are ok! but i dont know why these happen! many thanks, mudboy > DOMWriter unlimited loop when document has CDATA section > > > Key: XERCESC-1295 > URL: http://issues.apache.org/jira/browse/XERCESC-1295

[jira] Resolved: (XERCESC-1295) DOMWriter unlimited loop when document has CDATA section

2004-10-29 Thread Alberto Massari (JIRA)
, please reopen this issue or open a new, more specific, one. Thanks, Alberto > DOMWriter unlimited loop when document has CDATA section > > > Key: XERCESC-1295 > URL: http://issues.apache.org/jira/brow

[jira] Commented: (XERCESC-1295) DOMWriter unlimited loop when document has CDATA section

2004-10-28 Thread youaremissed (JIRA)
think the issue is in my application code, I will examine it again. Thanks, mudboy > DOMWriter unlimited loop when document has CDATA section > > > Key: XERCESC-1295 > URL: http://issues.apache.org/jira/brow

[jira] Commented: (XERCESC-1295) DOMWriter unlimited loop when document has CDATA section

2004-10-27 Thread Alberto Massari (JIRA)
doing the same API calls you write. But I get the right result; can you try running the same command line on AIX so that we can verify the issue is in the Xerces code? Thanks, Alberto > DOMWriter unlimited loop when document has

[jira] Created: (XERCESC-1295) DOMWriter unlimited loop when document has CDATA section

2004-10-26 Thread youaremissed (JIRA)
DOMWriter unlimited loop when document has CDATA section - Key: XERCESC-1295 URL: http://issues.apache.org/jira/browse/XERCESC-1295 Project: Xerces-C++ Type: Bug Components: DOM Versions: 2.4.0

DO NOT REPLY [Bug 16652] - data from CDATA section is not passed for validation

2003-03-18 Thread bugzilla
gzilla/show_bug.cgi?id=16652 data from CDATA section is not passed for validation [EMAIL PROTECTED] changed: What|Removed |Added Status|VERIFIED|

RE: CDATA section

2003-03-11 Thread Jesse Pelton
I think you're right. Section 2.7 of the XML spec says, "Within a CDATA section, only the CDEnd string is recognized as markup, so that left angle brackets and ampersands may occur in their literal form; they need not (and cannot) be escaped using "<" and "&&quo

Re: CDATA section

2003-03-11 Thread Gareth Reakes
gt; - Original Message - > From: "Tony Dodd" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, March 11, 2003 1:10 PM > Subject: RE: CDATA section > > > > Pablo > > > > I found just the same. This problem will go away i

Re: CDATA section

2003-03-11 Thread Pablo Yabo
thanks, that was the solution. Pablo - Original Message - From: "Tony Dodd" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 11, 2003 1:10 PM Subject: RE: CDATA section > Pablo > > I found just the same. This problem will go away if yo

RE: CDATA section

2003-03-11 Thread Tony Dodd
Pablo I found just the same. This problem will go away if you set split-cdata-sections to false, assuming you can safely do that. Tony Dodd >-Original Message- >From: Pablo Yabo [mailto:[EMAIL PROTECTED] >Sent: 11 March 2003 13:40 >To: [EMAIL PROTECTED] >Subject: Re

Re: CDATA section

2003-03-11 Thread Pablo Yabo
that was a mistake, but the CData section is created using API functions, so it has the opening square bracket. I need to send to another library the data inside the CDATA, so I need to send , no <Trigger></></Trigger>. I need to replace &It; with '<'. Pablo

RE: CDATA section

2003-03-11 Thread Jesse Pelton
I don't know if it would be relevant, but you've omitted the opening square bracket in your CDATA section. Does it actually look the way you indicated, or does it include the opening square bracket ("") as required by the spec? -Original Message- From: Pablo Yabo [mai

Re: CDATA section

2003-03-11 Thread Pablo Yabo
I've got a code fragment: ... m_formTarget = new MemBufFormatTarget; theSerializer->writeNode(m_formTarget, *m_doc); delete theSerializer; return (const char *) m_formTarget->getRawBuffer(); } the document m_doc has CDATA section as this "" and when I get the buffe

Re: CDATA section

2003-03-11 Thread Gareth Reakes
ment here? > > Pablo > - Original Message - > From: "Gareth Reakes" <[EMAIL PROTECTED]> > To: "xerces" <[EMAIL PROTECTED]> > Sent: Tuesday, March 11, 2003 5:54 AM > Subject: Re: CDATA section > > > > Hi, > > when the conte

Re: CDATA section

2003-03-11 Thread Pablo Yabo
but, I send the tree to a MemBufFormatTarget and then I get the text with getRawBuffer. How can I get the original document here? Pablo - Original Message - From: "Gareth Reakes" <[EMAIL PROTECTED]> To: "xerces" <[EMAIL PROTECTED]> Sent: Tuesday, March 11,

Re: CDATA section

2003-03-11 Thread Gareth Reakes
Hi, when the content is serialized xerces will escape < characters in CDATA as this would make the document illegal. It will remove them again when you parse. Gareth On Mon, 10 Mar 2003, Pablo Yabo wrote: > Hi, > How can I add a string "something" in the data section. > When I add the

CDATA section

2003-03-10 Thread Pablo Yabo
Hi, How can I add a string "something" in the data section. When I add the content the library changes the content as this "".   Pablo

DO NOT REPLY [Bug 16652] - data from CDATA section is not passed for validation

2003-02-07 Thread bugzilla
gzilla/show_bug.cgi?id=16652 data from CDATA section is not passed for validation [EMAIL PROTECTED] changed: What|Removed |Added Status|RESOLVED|VE

DO NOT REPLY [Bug 16652] - data from CDATA section is not passed for validation

2003-02-04 Thread bugzilla
gzilla/show_bug.cgi?id=16652 data from CDATA section is not passed for validation [EMAIL PROTECTED] changed: What|Removed |Added Status|ASSIGNED|RE

DO NOT REPLY [Bug 16652] - data from CDATA section is not passed for validation

2003-02-03 Thread bugzilla
gzilla/show_bug.cgi?id=16652 data from CDATA section is not passed for validation [EMAIL PROTECTED] changed: What|Removed |Added Status|NEW |AS

DO NOT REPLY [Bug 16652] New: - data from CDATA section is not passed for validation

2003-01-31 Thread bugzilla
gzilla/show_bug.cgi?id=16652 data from CDATA section is not passed for validation Summary: data from CDATA section is not passed for validation Product: Xerces-C++ Version: 1.7.0 Platform: All OS/Version: All Status: NEW Severity:

RE: accentuated characters in CDATA section

2001-04-03 Thread Dean Roddey
characters in CDATA section I've an XML file with a lot oh CDATA section. In these sections, there are a lot of accentuated characters because of the language I use is French. When I build the tree with the DOMParser, there is no problems but when i get the text contained in CDATA section, and w

accentuated characters in CDATA section

2001-04-03 Thread Herve Mathonet
I've an XML file with a lot oh CDATA section. In these sections, there are a lot of accentuated characters because of the language I use is French. When I build the tree with the DOMParser, there is no problems but when i get the text contained in CDATA section, and when i display it whit

accentuated characters in CDATA section

2001-04-03 Thread Herve Mathonet
I've an XML file with a lot oh CDATA section. In these sections, there are a lot of accentuated characters because of the language I use is French. When I build the tree with the DOMParser, there is no problems but when i get the text contained in CDATA section, and when i display it whit