Bug 6024 - PROPPATCH response specifies 'DAV' as the namespace
Summary: PROPPATCH response specifies 'DAV' as the namespace
Status: RESOLVED FIXED
Alias: None
Product: Slide
Classification: Unclassified
Component: WebDAV Server (show other bugs)
Version: Nightly
Hardware: All other
: P3 normal (vote)
Target Milestone: ---
Assignee: Slide Developer List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-01-25 00:05 UTC by Joe Mudd
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Joe Mudd 2002-01-25 00:05:39 UTC
The multistatus response from a PROPPATCH request has the following start 
element:

<d:multistatus xmlns:d="DAV">

I believe it should be:

<d:multistatus xmlns:d="DAV:">

I perused the code and based on a quick glance it seems that
jakarta-
slide/src/webdav/server/org/apache/slide/webdav/method/PropPatchMethod.java is 
the cause.  Specifically:

        generatedXML.writeElement("d", "DAV", "multistatus",
                                  XMLPrinter.OPENING);

which I think should be:

        generatedXML.writeElement("d", "DAV:", "multistatus",
                                  XMLPrinter.OPENING);

Thanks,
Joe
Comment 1 Dirk Verbeeck 2002-02-09 14:56:09 UTC
Patch applied by Juergen on 2002/1/25 12:30:44