[EMAIL PROTECTED] Re: how to customise response to OPTIONS request?

2006-08-10 Thread Jens Theisen
Brandon Fosdick wrote: What do you mean by "add basic webdav functionality" to a cgi app? I mean implement a level 1 webdav server with a cgi interface. A PROPFIND, for instance, would be served by the cgi application in the same way the GET and POSTs already are. You may be able to get aw

[EMAIL PROTECTED] Re: how to customise response to OPTIONS request?

2006-08-09 Thread Jens Theisen
Vincent Bray wrote: Try Script, I tried this already; this was what I was refering to when I said I already figured out how to server requests unkown to apache. The OPTIONS request, however, can't be served that way - possibly to prevent the average user from changing the Server header. :)

[EMAIL PROTECTED] how to customise response to OPTIONS request?

2006-08-08 Thread Jens Theisen
Hello, I have a cgi application and want to add basic webdav functionality. I wonder if it is an option to implement webdav on the cgi level. I appreciate I can add request handlers for requests unkown to apache, but I need to modify the behaviour of the OPTIONS request as well. In particula