| Author |
XML push processing
|
Anand Ramesh
Greenhorn
Joined: Apr 28, 2009
Posts: 27
|
|
How would we justify this statement "push processing, the parser controls the application thread, and the client can only accept invocations from the parser."
Ref
http://java.sun.com/webservices/docs/1.6/tutorial/doc/SJSXP2.html
|
Ramesh
SCEA 5
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12267
|
|
That is a fair statement of what happens when you start a SAX parser.
The Thread executing the parser calls the methods you have supplied in a "client" class until the last closing tag of the document is encountered.
What is your problem with it?
Bill
|
Java Resources at www.wbrogden.com
|
 |
 |
|
|
subject: XML push processing
|
|
|