|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] sax doubt
I want to write a SAX based xml filter to convert
<name>first last</name> to <name><first>first</first>
<last>last</last></name>.
So in the characters method during <name> element
context, it seems I should call
conhan.startelement("first")
conhan.characters ("first")
conhan.endelement ("first");
same for "last".
I can do this when I know
<first>first</first>
<last>last</last>
before hand.
Suppose I have a function that returns:
<name first="first" last="last"/> <-- func("first last")
and I want to pass this xml to the content handler
rather than two elements.
The question is can I just pass on a string of xml characters
and let somebody else figure out the start,characters and
the end of the xml element frmo that xml character string
and call the content handler appropriately.
thanks,
--st
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








