Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

where can I find non-standard status codes?

Status
Not open for further replies.

cp2000

Technical User
Joined
Dec 31, 2002
Messages
81
Location
US
I am trying to understand some log entries. But the status codes they have I am unable to find. Tried Google, MSN, Yahoo and searches.
The two staus codes are:
Access Log - 330, 336
x.x.x.x - - xx/Jun/2004:10:04:48 -0600] "GET /sub/index.htm HTTP/1.1" 302 330

SSL requests - 298
[xx/Jun/2004:10:04:50 -0600] somehost.net SSLv3 RC4-MD5 "GET /sub/index.htm HTTP/1.1" 298

Is there some place that has a more complete list of codes?
 
I don't know about the second, but your first status code is 302 (object found under a different URI, but continue to use this one). 330 is the object's size.
 
Finally found the answer....It's easy when you know the answer.
I looked at my log format and found the first of the 2 numbers is the status code and the second one is the download size (minus the headers).

For reference -
the status codes can be found at:

Log format can be found at:

Maybe this will save somebody some time in the future
 
Speaking of status codes .... I too have been gooleing for a particular status code!

Do you know what could be causing a 206 (partial contents)? I'm experiencing it on a pdf file that won't open!?!

Many Thanks


Jakob §:O)
 
Post the log entry and I will see what I can do. Some of our proplr work with PDF's
 
Excellent, thanks!

Here's a few lines from my access.log:

156.24.110.151 - - [27/Jul/2004:11:13:27 +0200] "GET /docbase/products/sp2/input/CPU.pdf HTTP/1.1" 200 1031760
156.24.110.151 - - [27/Jul/2004:11:13:28 +0200] "GET /docbase/products/sp2/input/CPU.pdf HTTP/1.1" 206 1027974
156.24.110.151 - - [27/Jul/2004:11:13:32 +0200] "GET /docbase/products/sp2/input/CPU.pdf HTTP/1.1" 206 901320

Funny thing, though: other (smaller) PDFs open fine. This one is 1008 kb and it opens fine if I download it forst -just wont open in a browser window like the other PDFs?!

Thanks


Jakob §:O)
 
Do you want HTTP Status Codes? Take the primary source, HTTP/1.1 Specification (famous RFC2616):
ftp://ftp.isi.edu/in-notes/rfc2616.txt
 
ArkM,

Well, actually I need to know why the request is a partial GET request. Thanks for the link (already been there).

Thanks


Jakob §:O)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top