Having a quick look at the PROPFIND implementation on the server, there
seems to be a problem with the namespace handling in the PROPFIND response.
1) Submit a PROPPATCH with a property that does not have a namespace
PROPPATCH /slide/files/TestResource HTTP/1.1
Content-Type: text/xml; charset=utf-8
Content-Length: 403
<?xml version="1.0" encoding="utf-8" ?>
<D:propertyupdate xmlns:D="DAV:">
<D:set>
<D:prop>
<SimplePropertyName>SimplePropertyValue</SimplePropertyName>
</D:prop>
</D:set>
</D:propertyupdate>
2) PROPFIND returns an incorrect namespace/name for the property
<?xml version="1.0" encoding="utf-8" ?>
<multistatus xmlns="DAV:" xmlns:S=http://jakarta.apache.org/slide/>
<response>
<prop>
<ns0:SimplePropertyName>SimplePropertyValue</ns0:SimplePropertyName>
</prop>
</response>
</multistatus>
3) PROPFIND response should reset the default namespace for this property
without a namespace prefix
<SimplePropertyName xmlns="">SimplePropertyValue<SimplePropertyName>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>