Re: WebFolder does not recognize my WebDAV server

Accidentally caught by the spam filter. I've added Joe's new email address
to the accept2 list.

- Jim

-----Original Message-----
From: Joe Orton [mailto:joe@light.plus.com]
Sent: Thursday, October 19, 2000 2:31 PM
To: 'w3c-dist-auth@w3.org'
Subject: [Moderator Action] Re: WebFolder does not recognize my WebDAV
server


The OPTIONS response should include the headers

DAV: 1
MS-Author-Via: DAV

(the latter is only for best results against MS clients) As others have
said, PROPFIND etc in the Allow header (don't know if MS clients check
this or not).

> Allow: GET, HEAD, POST, TRACE, OPTIONS
> Content-Type: text/plain
> Servlet-Engine: Tomcat Web Server/3.1 (JSP 1.1; Servlet 2.2; Java 1.1.4;
> Windows NT 5.0 x86; java.vendor=Microsoft Corp.)
> Date: Thu, 19 Oct 2000 14:59:59 GMT+00:00
> Content-Language: en

... then, the PROPFIND response is not right. You need to use namespaces
properly, e.g.

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

first, and then replace DAV: everywhere below with D:

> <?xml version="1.0" encoding="UTF-8"?>
> <DAV:multistatus>
>     <DAV:response>

Received on Friday, 20 October 2000 19:26:59 UTC