--- jakarta-slide\src\webdav\client\src\org\apache\webdav\lib\methods\XMLResponseMethodBase.java	Fri May 18 08:44:38 2001
+++ jakarta-slide\src\webdav\client\src\org\apache\webdav\lib\methods\XMLResponseMethodBase.java	Fri Jun 08 15:16:13 2001
@@ -106,6 +106,7 @@
  *
  * @author B.C. Holmes
  * @author Remy Maucherat
+ * @author Dirk Verbeeck
  */
 public class XMLResponseMethodBase
     extends HttpMethodBase {
@@ -224,7 +225,11 @@
                 ("XML parsing error; response stream is not valid XML: "
                  + e.getMessage());
         }
-
+		
+        // init the response table to display the responses	during debugging
+        if (debug>10) {
+            initResponseHashtable();
+        }
     }
 
 
@@ -261,6 +266,8 @@
                                     new ResponseWithinMultistatus(child);
                                 responseHashtable.put(response.getHref(),
                                                       response);
+                                if (debug>10)
+                                    System.out.println(response);
                             }
                         } catch (ClassCastException e) {
                         }
@@ -304,6 +311,8 @@
                 property = new LockDiscoveryProperty(response, element);
             } else if (SupportedLockProperty.TAG_NAME.equals(localName)) {
                 property = new SupportedLockProperty(response, element);
+            } else if (AclProperty.TAG_NAME.equals(localName)) {
+                property = new AclProperty(response, element);
             }
         }
 
