Web Development
webdav.txt
Associated article: WebDAV, IIS, & ISAPI Filters
Tags: Web Development
Published source code accompanying the article by Martin Hallerdal in which he discusses the Web-based Distributed Authoring and Versioning (WebDAV) specification which defines a set of extensions to the HTTP protocol that let you collaboratively edit and manage files on remote web servers. Also see WEBDAV.ZIP.
WebDAV, IIS, & ISAPI Filters
by Martin Hallerdal
Listing One
/* Returns a mime type for a file NOTE: Not threadsafe */
BOOL GetMimeType(char* szFile, char* szBuff) {
//Find extension
char* szExt = szFile;
while(*szExt != '0' && *szExt != '.') {
...


