> I guess that I expected to see the 'mod_jserv.c' in httpd with: > [root@junior2 bin]# /usr/local/etc/apache/bin/httpd -l > Compiled-in modules: > http_core.c > mod_so.c There are two kind of apache modules, compiled-in and DSO. As you can see, the output from "httpd -l" list only compiled-in modules. If the ".c" isnt list here, you can still add the module as an DSO. Check if the .so file for that module exists in the SHARED_CORE_DIR directory. if it doesnt exit, you need to configure and build it. >From the INSTALL file in Apache-JServ-1.0b3 $>./Configure --with-apache-install=HTTPD_ROOT \ --prefix=/usr/local/jserv \ --with-jkd-home=/path/to/jdk \ --with-jsdk=/path/to/jsdk.jar \ SHARED_CORE_DIR and HTTPD_ROOT are those listed in the output from "httpd -V" Then, $>make $>make install If jdk, or jsdk are missing, you need to install them. If thing goes well, you should see something like "... Add this line to your httpd.conf include /path/to/Apache-JServ-1.0b3/example/jserv.conf ..." in the output from "make install". Do that and restart httpd. Try to connect to http://localhost/example/Hello, you should see something (good hopefully.) ---------------------------------------------------------------- To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Archives and Other: <http://java.apache.org/main/mail.html/> Problems?: [EMAIL PROTECTED]