You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation of Jath for MSIE does not resolve namespaces. XML namespace support should be added to bring MSIE to parity with the other supported browsers.
See test cases 8 on. Namespaces specified as part of the XPath query will work, but prefixes that require a resolver will not work currently.
The text was updated successfully, but these errors were encountered:
Adding a resolver to an xml document in MSIE looks something like this:
xmldoc.setProperty("SelectionNamespaces",
"xmlns:wrox='http://www.wrox.com/' xmlns='http://www.amazon.com/'");
var book = xmldoc.documentElement.selectSingleNode("wrox:book");
Note that the resolver list is added as a property of the xml document that we wish to parse using jath.
Current implementation of Jath for MSIE does not resolve namespaces. XML namespace support should be added to bring MSIE to parity with the other supported browsers.
See test cases 8 on. Namespaces specified as part of the XPath query will work, but prefixes that require a resolver will not work currently.
The text was updated successfully, but these errors were encountered: