Hello,
I´m using Owncloud 9 and Hiawatha Server, which ist a really good combination.
But the CalDav Service of Owncloud 9 uses "MKCALENDAR" to create new calendars. Changing the method in Owncloud to POSTworks, but it breaks the ownclouds code integrity check
I implemented the MKCALENDAR method - so no code changes are neccesary in Owncloud.
The function "determine_request_method" in "session.c" follwing check can be added:
else if (strncmp(session->request, "MKCALENDAR ", 11) == 0) {
session->request_method = POST;
}
I use POST, because it works without any problems.