"Thorsten Franzke" <[EMAIL PROTECTED]> wrote: > I am working from within a corporate network and in contrast to many > other's I'd like to analyze the statistics for an internal website. > Because of our very specific setup (NT autoresponse with auth user rep. > turned on) I need to have the 401 codes being regarded as successful > requests instead of being regarded as a failed request.
No you don't - if 401 was treated as a success, you'd get 2 "successful" requests for that item. If you look closely at your log files, you see that every time a 401 response code is sent, the item is requested again immediately afterwards - the first time generates a 401, which causes the browser to send the request a second time, but with authentication information. > Matter of fact, I am looking for a setting similar to the 304ISUCCESS > or any other way to achieve this. A 304 can be treated as a success, because the browser already has a copy of the current item, and doesn't need to download it again - the request is successful, even though it doesn't require you to send the whole item across the wire. A 401 is always a failure - the browser won't display the object unless a subsequent request is successful. Aengus +------------------------------------------------------------------------ | This is the analog-help mailing list. To unsubscribe from this | mailing list, go to | http://lists.isite.net/listgate/analog-help/unsubscribe.html | | List archives are available at | http://www.mail-archive.com/[email protected]/ | http://lists.isite.net/listgate/analog-help/archives/ | http://www.tallylist.com/archives/index.cfm/mlist.7 +------------------------------------------------------------------------
