Creating a folder(collection) in Windows 2000 Japanese version is the following(the same as Windows95/98/ME with WebFolder in IE5).
Creating a folder
After refreshing, there are two folders, one is the renamed folder, and the other is "New Folder" in shift-jis(Japanese).
It is Shift-JIS that the character code from Windows to mod_dav. The other is UTF-8.
If apache is running on Linux, because Linux kernel can handle UTF-8, the problem would be fixed by converting the character code with calling iconv(3) before handles the files.
mod_encoding is THE Apache module*1 for the purpose. The modules is written by Mr. Yamada working for IIJ. I've been redistributing the module under his permissions.
Setting up is the same as the usual Apache modules. One just run ./configure, and add `--add-module=mod_encoding.c' line. Install the outcome binary files as usual. After that, add the following directives into the httpd.conf(5), and restart Apache.
LoadModule encoding_module modules/mod_encoding.so <IfModule mod_encoding.c> EncodingEngine on SetServerEncoding UTF-8 AddClientEncoding SJIS "Microsoft .* DAV" AddClientEncoding SJIS "xdwin9x/" AddClientEncoding EUC-JP "cadaver/" </IfModule>
*1 At the time of this writing :-)