I have a custom namespace in my XML Document, which the WinRT XML functions seem to treat as invalid/unknown
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:Root xmlns:ns2="http://www.xxxx.xxx/schema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cbv="http://yyy.yyy/schema"><Item zip="1111" cbv:comment="new comment"></Item></ns2:Root>
If I create this XML in memory and write it to a file using saveToFileAsync it will stop writing the file after "Item zip='1111'" and not go into the error handler of the promise.
First of all, other XML Engines do not have a problem with the given XML. Its valid. Secondly when I call getXml() on the document I do get a failure for the cbv:comment positioned attribute.
Any ideas what's wrong here?