blob: 3c8d377ced0e3620b3e98c45b7bdf7dba531c90e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<tt>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN"><br>
<HTML><br>
<HEAD><br>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8"><br>
<META NAME="GENERATOR" CONTENT="GtkHTML/4.8.5"><br>
</HEAD><br>
<BODY><br>
I am writing a CalDAV handler, which is a type of WebDAV server. CalDAV defines a bunch of<BR><br>
additional methods beyond what a typical web browser would use, such as REPORT and PROPFIND.<BR><br>
<BR><br>
I have written the allowed_methods and known_methods callbacks to report that all these methods<BR><br>
are acceptable. My content_types_provided has an entry for "application/xml", which is how these<BR><br>
extra methods turn up.<BR><br>
<BR><br>
When I connect to my server using the calendar function of Evolution, one of the first things it does<BR><br>
is a REPORT method, which is sort of a query. This gets as far as content_types_provided, but after<BR><br>
that it does not call the function I identified in content_types_provided.<BR><br>
<BR><br>
What is the best way to handle the non-standard methods that do not have defined callbacks?<BR><br>
<BR><br>
</BODY><br>
</HTML><br>
</tt>
|