You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Rob Wilkerson <r....@gmail.com> on 2006/08/21 13:55:34 UTC

[users@httpd] 400 Bad Request Error

All -

I'm receiving a 400 error when trying to access the following URL:
http://saiprojects.com/projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss

It only appears to happen in IE.  In Firefox, I can pull up the feed
XML just fine.  There are messages in my error_log that indicate:

Digest: uri mismatch - </projects/myproject/timeline> does not match
request-uri </projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss>

Do I really have to include all of that in my location block?  The
entire location block follows:

<Location "/projects/myproject/timeline">
   AuthType Digest
   AuthName "MyProject"
   AuthDigestDomain /projects/myproject/
   AuthDigestProvider file
   AuthUserFile /opt/projects/users.htdigest
   Require valid-user
</Location>

Any insight would be greatly appreciated.

Thanks.

-- 

Rob Wilkerson

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Re: 400 Bad Request Error

Posted by Pid <p...@pidster.com>.
try adding

  &ext=.rss or
  &ext=.xml

to the end of the URl, in IE





Rob Wilkerson wrote:
> One more thing I should mention: The requested file is returned with
> an application/rss+xml mime type.  I don't know whether that has any
> impact on the problem I'm seeing, but I thought I'd throw it out there
> just in case.
> 
> Thanks again.
> 
> On 8/21/06, Rob Wilkerson <r....@gmail.com> wrote:
>> All -
>>
>> I'm receiving a 400 error when trying to access the following URL:
>> http://saiprojects.com/projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss 
>>
>>
>> It only appears to happen in IE.  In Firefox, I can pull up the feed
>> XML just fine.  There are messages in my error_log that indicate:
>>
>> Digest: uri mismatch - </projects/myproject/timeline> does not match
>> request-uri 
>> </projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss>
>>
>> Do I really have to include all of that in my location block?  The
>> entire location block follows:
>>
>> <Location "/projects/myproject/timeline">
>>    AuthType Digest
>>    AuthName "MyProject"
>>    AuthDigestDomain /projects/myproject/
>>    AuthDigestProvider file
>>    AuthUserFile /opt/projects/users.htdigest
>>    Require valid-user
>> </Location>
>>
>> Any insight would be greatly appreciated.
>>
>> Thanks.
>>
>> -- 
>>
>> Rob Wilkerson
>>
> 
> 


---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: 400 Bad Request Error

Posted by Rob Wilkerson <r....@gmail.com>.
One more thing I should mention: The requested file is returned with
an application/rss+xml mime type.  I don't know whether that has any
impact on the problem I'm seeing, but I thought I'd throw it out there
just in case.

Thanks again.

On 8/21/06, Rob Wilkerson <r....@gmail.com> wrote:
> All -
>
> I'm receiving a 400 error when trying to access the following URL:
> http://saiprojects.com/projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss
>
> It only appears to happen in IE.  In Firefox, I can pull up the feed
> XML just fine.  There are messages in my error_log that indicate:
>
> Digest: uri mismatch - </projects/myproject/timeline> does not match
> request-uri </projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss>
>
> Do I really have to include all of that in my location block?  The
> entire location block follows:
>
> <Location "/projects/myproject/timeline">
>    AuthType Digest
>    AuthName "MyProject"
>    AuthDigestDomain /projects/myproject/
>    AuthDigestProvider file
>    AuthUserFile /opt/projects/users.htdigest
>    Require valid-user
> </Location>
>
> Any insight would be greatly appreciated.
>
> Thanks.
>
> --
>
> Rob Wilkerson
>


-- 

Rob Wilkerson

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] 400 Bad Request Error

Posted by Rob Wilkerson <r....@gmail.com>.
Thanks, Joshua.  That was exactly what I needed.  I appreciate your help.

On 8/21/06, Joshua Slive <jo...@slive.ca> wrote:
> On 8/21/06, Rob Wilkerson <r....@gmail.com> wrote:
> > All -
> >
> > I'm receiving a 400 error when trying to access the following URL:
> > http://saiprojects.com/projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss
> >
> > It only appears to happen in IE.  In Firefox, I can pull up the feed
> > XML just fine.  There are messages in my error_log that indicate:
> >
> > Digest: uri mismatch - </projects/myproject/timeline> does not match
> > request-uri </projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss>
> >
> > Do I really have to include all of that in my location block?  The
> > entire location block follows:
> >
> > <Location "/projects/myproject/timeline">
> >    AuthType Digest
> >    AuthName "MyProject"
> >    AuthDigestDomain /projects/myproject/
> >    AuthDigestProvider file
> >    AuthUserFile /opt/projects/users.htdigest
> >    Require valid-user
> > </Location>
> >
> > Any insight would be greatly appreciated.
>
> Start with
> http://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#msie
>
> Joshua.
>
> ---------------------------------------------------------------------
> 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
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
>


-- 

Rob Wilkerson

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] 400 Bad Request Error

Posted by Joshua Slive <jo...@slive.ca>.
On 8/21/06, Rob Wilkerson <r....@gmail.com> wrote:
> All -
>
> I'm receiving a 400 error when trying to access the following URL:
> http://saiprojects.com/projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss
>
> It only appears to happen in IE.  In Firefox, I can pull up the feed
> XML just fine.  There are messages in my error_log that indicate:
>
> Digest: uri mismatch - </projects/myproject/timeline> does not match
> request-uri </projects/myproject/timeline?changeset=on&max=50&daysback=90&format=rss>
>
> Do I really have to include all of that in my location block?  The
> entire location block follows:
>
> <Location "/projects/myproject/timeline">
>    AuthType Digest
>    AuthName "MyProject"
>    AuthDigestDomain /projects/myproject/
>    AuthDigestProvider file
>    AuthUserFile /opt/projects/users.htdigest
>    Require valid-user
> </Location>
>
> Any insight would be greatly appreciated.

Start with
http://httpd.apache.org/docs/2.2/mod/mod_auth_digest.html#msie

Joshua.

---------------------------------------------------------------------
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
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org