views:

27

answers:

1

Also, can you SEND any header back? (return headers) when you run a web server?

Or, are headers limited?

+1  A: 

Web pages are retrieved using the HTTP protocol. HTTP is text-based. Both, a client requesting and a server responding within a HTTP communication can add custom headers to the HTTP messages. Its up to the communicating parties how to process these. I would assume that an unknown header is dropped silently.

Bernd
From what I've seen, the prefix "x-" is generally how client/server add non-standard headers in their responses.
David