You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by simran <si...@leonardchristian.com> on 2002/03/13 03:00:30 UTC

Allow Headers...

Hi All, 

I have compiled the following together to get my httpd:

 * Apache/1.3.23 (Unix) 
 * DAV/1.0.3 
 * mod_perl/1.26

In my apache conf file i now have:

--------------------------------------------------------
  <Location /dav/>
    AuthName "DAV Realm"
    AuthType Basic
    AuthUserFile  /home/simran/netchant/www/pa/conf/.htpasswd

    DAV On
    Options Indexes
    AllowOverride All

    <Limit GET POST PUT DELETE CONNECT OPTIONS PATCH PROPFIND PROPPATCH
MKCOL COPY MOVE LOCK UNLOCK>
        Order allow,deny
        Allow from all
    </Limit>

  </Location>
--------------------------------------------------------

However, the only headers apache sends back from the server are:

========= Outbound Message =========
OPTIONS /dav/ HTTP/1.1
Host: pa.sitesuite.ss:9004
Connection: Keep-Alive, TE
TE: trailers, deflate, gzip, compress
User-Agent: UCI DAV Explorer/0.81 RPT-HTTPClient/0.3-3E
Accept-Encoding: deflate, gzip, x-gzip, compress, x-compress
========= Inbound Message =========
HTTP/1.1 200 OK
Date: Tue, 12 Mar 2002 09:51:55 GMT
Server: Apache/1.3.23 (Unix) DAV/1.0.3 mod_perl/1.26
Content-Length: 0
Allow: GET, HEAD, OPTIONS, TRACE
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
====================================

Now my thinking is that because the 'Allow Header' is not entirely true
(aka, we can PUT etc...) the clients are thinking that we do not have
DAV installed whereas we do. 

Has anyone else had a similar problems with Apache not seemingly telling
the truth about what OPTIONS are available? Is there something i am
missing in the configuration...?

simran.



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org