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
According to RFC4918, property names consist of [namespace name], [local name], [attributes], and [children].
Actually, the webdav-server's test has code for testing that you can correctly assign properties named with namespace.
And the reason I need namespaces are that I encountered usecase of using properties with namespace. In that case, PROPFIND result stripped namespaces cannot be used. ( developers have to use PROPFIND method manually. )
Hi, I'm implementing PROPPATCH method ( related to #206 ).
I'm writing test codes. ( I'm referring to to webdav-server test code.)
Some properties have namespace such as
<namespace:testcustom>Value</namespace:testcustom>
<x:testcustom2 xmlns:x="namespace:">Value</x:testcustom2>
but stat function with
{ details: true }
options returns only tagName without namespaces.Please let me know how to handle namespaces in result XML ?
FYI, I think combination of
xpath
andxmldom
is useful for handling namespace ifstat
would return raw XML data.Thanks.
The text was updated successfully, but these errors were encountered: