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
{{ message }}
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.
Hi Aslak, i tried your sample client with a webdav server that i've written. It's working well but since my server adds extra empty spaces (space, tabulation or new lines, for debug) between xml response elemets, in firefox the statement:
for (var i = 1; i < doc.childNodes.length; i++) {
var response = doc.childNodes[i];
sets the response var to a text node, generating a "response.getElementsByTagName is not a function" error on the following line.
To fix this, i added a check to the tagName of response, and now it's fine.
for (var i = 1; i < doc.childNodes.length; i++) {
var response = doc.childNodes[i];
if (response.tagName == 'D:response') {// ANDREA --text node
var href = respon.....
.....
}
Not sure if this is due to my implementation since it works perfectly with other clients.
Hope this help..
The text was updated successfully, but these errors were encountered:
Hi Aslak, i tried your sample client with a webdav server that i've written. It's working well but since my server adds extra empty spaces (space, tabulation or new lines, for debug) between xml response elemets, in firefox the statement:
sets the response var to a text node, generating a "response.getElementsByTagName is not a function" error on the following line.
To fix this, i added a check to the tagName of response, and now it's fine.
Not sure if this is due to my implementation since it works perfectly with other clients.
Hope this help..
The text was updated successfully, but these errors were encountered: