
* Why does the move_coll test fail on test.webdav.org?

At time of writing, test.webdav.org is running an old version of
mod_dav which has a few bugs.  mod_dav 1.0.3 passes all litmus tests.

* What does the "propfind_invalid2" test check for?

This was a bug found in mod_dav 1.0.2 by Julian Reschke.

If a request was sent with an XML body which included an empty
namespace prefix declaration (xmlns:ns1=""), then the server must
reject that with a "400 Bad Request" response, as it is invalid
according to the XML Namespace specification:

http://www.w3.org/TR/REC-xml-names#dt-prefix

* What does the "propnullns" test check for?

This was a bug found in mod_dav 1.0.2 by Julian Reschke.

If a property was created which had a name with an empty namespace,
then mod_dav would produce a PROPFIND response for that property which
itself included an invalid empty namespace prefix declaration.  The
"propnullns" test checks for this, simply by setting a property with
an empty namespace, and retrieving it again.

* How do I use litmus with a proxy server?

For instance, using an HTTP proxy called "foobar" on port 8080, use:

  $ litmus --proxy=foobar:8080 http://server/dav/

* How do I use litmus with an SSL server?

Just pass in the appropriate https:// URL, for instance:

  $ litmus https://server/dav/

