My OS is SunOS 5.6, apache server is 1.3.4 and the Jserv is 1.0b3.
The relative script in httpd.conf file is as following:
<IfModule mod_jserv.c>
  ApJServManual off
  ApJServLogFile /usr/local/apache/logs/jserv.log
  ApJServSecretKey /usr/local/apache/etc/jserv.secret.key
  ApJServProperties /usr/local/apache/etc/jserv.properties
  ApJServMount /servlets /servlets
</IfModule>
# 
<Location /status/jserv>
  SetHandler jserv-status
  SetHandler jserv-status
#allow from localhost
# This entry is just for testing ,should be localhost
  allow from all
</Location>

<Location /servlets/*>
  allow from all
</Location>

When I send a request from http://myserver/servlets/SimpleServlet
, the Apache Server will find the SimpleServlet in  
$HTMLFILELOCATION/servlets, since no such directory exists, it will 
return the information of Not Found.

What happens? Why does it regard it as a common html file?
Get Your Private, Free Email at http://www.hotmail.com


----------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html/>
Problems?:           [EMAIL PROTECTED]

Reply via email to