Aleksander Slominski wrote: > interesting information however it seems that time between setInputSource > and parse(false) in XMLPullParserConfiguration is a "black hole" - > parse(false) does not take into account anything that happened after > setInputSource.
The notifications are made BUT there are certain features and properties that are not allowed to be set during parsing. Some of these include the "namespaces" and "validation" features. In the case of the pull-parser configuration, when you call setInputSource, that is the beginning of the parse. >From that point on, certain features will not take affect. This is not a bug in the XNI parser configuration framework or Xerces2 reference implementation. Rather, this is the nature of those features in question. Therefore, if you want your features to be set, set them before calling the setInputSource method. -- Andy Clark * IBM, TRL - Japan * [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
