Hi Folks, I am reading a compiler book [1] and it says this: "An important practical criterion is that a parser should not backtrack. At all stages it should operate deterministically. A number of authors have described backtracking parsers, but those are rarely used in practice. It is difficult to undo semantic actions carried out by the parser as is necessary if it has to backtrack." Do XML Schema processors do backtracking? For instance, if the XML document has this: <name>John Doe</name> and the XML Schema has this choice: <xs:choice> <xs:element name="id" type="xs:int" /> <xs:element name="name" type="xs:string" /> </xs:choice> Does the XML Schema processor try the first branch of the choice, backtrack, and then try the second branch? /Roger [1] Introduction to Compiling Techniques by J.R. Bennett, see bottom of page 80. _______________________________________________________________________ XML-DEV is a publicly archived, unmoderated list hosted by OASIS to support XML implementation and development. To minimize spam in the archives, you must subscribe before posting. [Un]Subscribe/change address: http://www.oasis-open.org/mlmanage/ Or unsubscribe: xml-dev-unsubscribe@lists.xml.org subscribe: xml-dev-subscribe@lists.xml.org List archive: http://lists.xml.org/archives/xml-dev/ List Guidelines: http://www.oasis-open.org/maillists/guidelines.php