Hello,
I am using your script to connect an Apache Webdav Server but I have an error on this line : (null has the null value in IE)
var collection = resourcetype.getElementsByTagName('D:collection')[0];
I need to modify the lines :
/*
var collection = resourcetype.getElementsByTagName('D:collection')[0];
if(collection) {
result[i-1] = new fs.dir(href);
} else {
result[i-1] = new fs.file(href);
}
*/
result[i-1] = new fs.dir(href);
What do I need to resolve the collection's problem ?
Thanks !