Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

3 character code in response headers

 
   Web Hosting and Web Master Forums (Home) -> Apache RSS
Next:  tomcat  
Author Message
suso

External


Since: Apr 13, 2004
Posts: 3



(Msg. 1) Posted: Wed Apr 14, 2004 12:50 am
Post subject: 3 character code in response headers
Archived from groups: alt>apache>configuration (more info?)

I was using telnet to generate response headers that I could use in a
presentation. I noticed a 3 character code that appears in Apache's
response right before the first line of the document. It looks like this:

GET / HTTP/1.1
Host: www.domain.net

HTTP/1.1 200 OK
Date: Wed, 14 Apr 2004 02:39:28 GMT
Server: Apache/1.3.26 (Unix)
Transfer-Encoding: chunked
Content-Type: text/html

414 <===== This line
<html>
<head>

Does anyone know what that 414 is? I recall reading about it somewhere
but can't remember where. It is different depending on the document that
I request and I encounter it on a handful of different web servers.

 >> Stay informed about: 3 character code in response headers 
Back to top
Login to vote
davideyeahsure

External


Since: Nov 03, 2003
Posts: 2907



(Msg. 2) Posted: Wed Apr 14, 2004 7:53 am
Post subject: Re: 3 character code in response headers [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Suso Banderas <suso.TakeThisOut@suso.org> wrote:
 > 414 <===== This line

I think that that line is in the HTML file you've been
served because it doesn't mean anything by the
standard.

Unless is another 'Microsoft's standard'.

Davide

--
| Rule of Defactualization: Information deteriorates upward through
| bureaucracies.
|
|<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: 3 character code in response headers 
Back to top
Login to vote
suso

External


Since: Apr 13, 2004
Posts: 3



(Msg. 3) Posted: Wed Apr 14, 2004 7:53 am
Post subject: Re: 3 character code in response headers [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Wed, 14 Apr 2004 04:53:37 +0000, Davide Bianchi wrote:

 > Suso Banderas <suso.DeleteThis@suso.org> wrote:
  >> 414 <===== This line
 >
 > I think that that line is in the HTML file you've been
 > served because it doesn't mean anything by the
 > standard.
 >
 > Unless is another 'Microsoft's standard'.


Nope, I checked because I first noticed it coming from my own web
server. It's definitely something being generated by Apache or a
module. It is generated whether the page exists or not. And it
is different for each URL. Here are several hosts that produce this:

<a style='text-decoration: underline;' href="http://www.suso.org" target="_blank">www.suso.org</a>
<a style='text-decoration: underline;' href="http://www.slashdot.org" target="_blank">www.slashdot.org</a>
<a style='text-decoration: underline;' href="http://www.he.net" target="_blank">www.he.net</a>
<a style='text-decoration: underline;' href="http://www.ora.com" target="_blank">www.ora.com</a>
<a style='text-decoration: underline;' href="http://www.apple.com" target="_blank">www.apple.com</a> (although they have a 2 character code)
<a style='text-decoration: underline;' href="http://www.monkey.org" target="_blank">www.monkey.org</a>
<a style='text-decoration: underline;' href="http://www.php.net" target="_blank">www.php.net</a> (4 character code)

Hmmm.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: 3 character code in response headers 
Back to top
Login to vote
google5

External


Since: May 06, 2004
Posts: 19



(Msg. 4) Posted: Wed Apr 14, 2004 8:19 am
Post subject: Re: 3 character code in response headers [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Suso Banderas <suso DeleteThis @suso.org> wrote in message news:<pan.2004.04.14.02.50.56.853055 DeleteThis @suso.org>...
 > I was using telnet to generate response headers that I could use in a
 > presentation. I noticed a 3 character code that appears in Apache's
 > response right before the first line of the document. It looks like this:
 >
 > GET / HTTP/1.1
<font color=purple> > Host: <a style='text-decoration: underline;' href="http://www.domain.net</font" target="_blank">www.domain.net</font</a>>
 >
 > HTTP/1.1 200 OK
 > Date: Wed, 14 Apr 2004 02:39:28 GMT
 > Server: Apache/1.3.26 (Unix)
 > Transfer-Encoding: chunked
 > Content-Type: text/html
 >
 > 414 <===== This line
 > <html>
 > <head>
 >
 > Does anyone know what that 414 is? I recall reading about it somewhere
 > but can't remember where. It is different depending on the document that
 > I request and I encounter it on a handful of different web servers.

It is a chunk header. Notice the "Transfer-Encoding: chunked" line.
See section 3.6.1 here:
<a style='text-decoration: underline;' href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html" target="_blank">http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html</a>

Joshua.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: 3 character code in response headers 
Back to top
Login to vote
user2348

External


Since: Jun 28, 2003
Posts: 203



(Msg. 5) Posted: Wed Apr 14, 2004 11:58 am
Post subject: Re: 3 character code in response headers [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Suso Banderas" <suso.RemoveThis@suso.org> wrote in message
news:pan.2004.04.14.02.50.56.853055@suso.org...

 > Does anyone know what that 414 is? I recall reading about it somewhere
 > but can't remember where. It is different depending on the document that
 > I request and I encounter it on a handful of different web servers.

This isn't a code it's a content length, notice the 'Transfer-Encoding:
chunked' header? This is how it works. See
<a style='text-decoration: underline;' href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6" target="_blank">http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6</a> for further
details.

Richard.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: 3 character code in response headers 
Back to top
Login to vote
suso

External


Since: Apr 13, 2004
Posts: 3



(Msg. 6) Posted: Wed Apr 14, 2004 11:58 am
Post subject: Re: 3 character code in response headers [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Wed, 14 Apr 2004 08:58:53 +0000, Richard Antony Burton wrote:
 > This isn't a code it's a content length, notice the 'Transfer-Encoding:
 > chunked' header? This is how it works. See
 > <a style='text-decoration: underline;' href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6" target="_blank">http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6</a> for further
 > details.
 >
 > Richard.


Ahhh, right. That makes sense. I'm used to seeing Content-Length
instead I guess. Thanks a lot for your help.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: 3 character code in response headers 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Apache Server side include character limits - I was wondering if there is a way to change the character limit on a server side include. I was including a page and it cuts off at 32000 characters. is this a default that can be changed? Any help would be great! Corey

stripped down 200 OK response? - Hi, Is there a way to minimize the amount of data in the http headers for a specific servlet/application that is sent back in an OK packet? I have a program that communicates with Apache/Tomcat by posting data to a servlet, but its a one-directional..

monitoring response time - Hi there, I am wondering if there are GPL tools to monitor response time of html pages loaded. Can anybody point me into the right direction? thanx merlin

RedirectMatch and HTTP response 305 - Hi All, I'm experiencing a strange problem with Apache. I have configured Apache to use virtual hosting. The configuration seems quite simple and clear: ######### NameVirtualHost 193.204.227.5 <VirtualHost 193.204.227.5> ServerName..

apache running but no response - Hi together, today i'm installed the new Apache2 webserver on my Windows XP SP1 platform. All OK, the server runs as a service under windows, but if I try to visit the local serverpage at the adress http://127.0.0.1 or localhost, i get the IE standard..
   Web Hosting and Web Master Forums (Home) -> Apache All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]