<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
<META NAME="GENERATOR" CONTENT="GtkHTML/4.8.5">
</HEAD>
<BODY>
I am writing a CalDAV handler, which is a type of WebDAV server. CalDAV defines a bunch of<BR>
additional methods beyond what a typical web browser would use, such as REPORT and PROPFIND.<BR>
<BR>
I have written the allowed_methods and known_methods callbacks to report that all these methods<BR>
are acceptable. My content_types_provided has an entry for "application/xml", which is how these<BR>
extra methods turn up.<BR>
<BR>
When I connect to my server using the calendar function of Evolution, one of the first things it does<BR>
is a REPORT method, which is sort of a query. This gets as far as content_types_provided, but after<BR>
that it does not call the function I identified in content_types_provided.<BR>
<BR>
What is the best way to handle the non-standard methods that do not have defined callbacks?<BR>
<BR>
</BODY>
</HTML>