You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-users@xerces.apache.org by gloridel <pt...@tgl.co.jp> on 2008/03/10 12:27:31 UTC

Sax Entity Handling

Hello all

Currently trying to learn SAX . I got till the
ContentHandling/attributes/values and got stuck with getting an entity.

<test>TheValue</test>

how do I do this?

gloridel

Re: Sax Entity Handling

Posted by gloridel <pt...@tgl.co.jp>.
I stand corrected. Thank you.

gloridel

David Bertoni さんは書きました:
> gloridel wrote:
>   
>> Hello all
>>
>> Currently trying to learn SAX . I got till the
>> ContentHandling/attributes/values and got stuck with getting an entity.
>>
>> <test>TheValue</test>
>>     
> That's not an entity. The character data of an element is reported through
> the characters() function.
>
> Dave
>
>
>   


Re: Sax Entity Handling

Posted by David Bertoni <db...@apache.org>.
gloridel wrote:
> Hello all
> 
> Currently trying to learn SAX . I got till the
> ContentHandling/attributes/values and got stuck with getting an entity.
> 
> <test>TheValue</test>
That's not an entity. The character data of an element is reported through
the characters() function.

Dave