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
source code clearly indicates that namespaces should be stripped:
const result = xmlParser.parse(xml, {
arrayMode: false,
ignoreNameSpace: true
// // We don't use the processors here as decoding is done manually
// // later on - decoding early would break some path checks.
// attrValueProcessor: val => decodeHTMLEntities(decodeURIComponent(val)),
// tagValueProcessor: val => decodeHTMLEntities(decodeURIComponent(val))
});
I'm unsure if this is a fastxml or webdav-client bug. Or possibly that I need to add some namespace definitions on the server side.
Many thanks!
The text was updated successfully, but these errors were encountered:
Hello and thank you for a great tool!
I have a legacy webdav server and the following strange multistatus parsing error occurs:
XML:
However, JSON of the js response from fastxml is contains namespaces: (reduced for readability)
source code clearly indicates that namespaces should be stripped:
I'm unsure if this is a fastxml or webdav-client bug. Or possibly that I need to add some namespace definitions on the server side.
Many thanks!
The text was updated successfully, but these errors were encountered: