> Hi everybody,
>
> I'm using latest slide, Tomcat 3.2.1 and Apache 1.3.19. For plugging
Tomcat
> into Apache I use mod_jk and the ajp12 worker, my OS is NT 4.0.
> I want to open my slide as a webfolder (from NT file explorer, add web
> folders). When I use Tomcat directly (http://localhost:8080/slide),
> everything works perfect, so I assume, my settings in slide and Tomcat are
> ok.
> When using Apache, I get an error and File Explorer writes following error
> file: (wecerr.txt)
>
> 03/15/2001 15:06:16
> HTTP 404 Not Found
> <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
> <HTML><HEAD>
> <TITLE>404 Not Found</TITLE>
> </HEAD><BODY>
> <H1>Not Found</H1>
> The requested URL /_vti_bin/shtml.exe/_vti_rpc was not found on this
> server.<P>
> <HR>
> <ADDRESS>Apache/1.3.19 Server at pcwam1.software-ag.de Port 80</ADDRESS>
> </BODY></HTML>
>
> This _vti stuff is Microsoft specific for frontpage server extensions and
is
> of course not available on Apache nor on Tomcat. I compared the responses
> coming from Tomcat (without Apache) and from Apache: both say 404 not
found,
> which is absolutely correct. However, using Apache the explorer reacts
with
> an error, with Tomcat explorer just continues.
>
> I added following lines to http.conf:
> --------------------------------------------------------------------------
--
> ---------------------
> LoadModule jk_module modules/mod_jk.dll
> JkWorkersFile "E:/projects/jakarta-tomcat/conf/workers.properties"
> JkLogFile "E:/projects/jakarta-tomcat/logs/mod_jk.log"
> JkLogLevel warn
>
> JkMount /slide/* ajp12
> --------------------------------------------------------------------------
--
> ---------------------
>
> This does not look as a Slide problem to me, but perhaps anyone had
problems
> (and solutions?) in this area before.
The MS client should start by doing a OPTIONS /slide.
The response returned included the MS specific header : "MS-Author-Via" with
value "DAV". This should indicate to IE that it shouldn't try FP.
The next request should be PROPFIND /slide.
If I remember well, the mod_jk people added the WebDAV methods to the mod_jk
from Tomcat 3.3. The one from Tomcat 3.2 may not be able to handle a
PROPFIND, for example (which of course would be a problem, and would explain
why IE is falling back to FP). I don't use mod_jk, so this is just a theory.
Remy