Custom HTTP header

J

Jim ruther Nill

I want a simple http header like the one below.

HTTP/1.1 200 OK
Server: Mongrel 1.1.5
Set-Cookie: JSESSIONID=<session_key>; Path=/
Content-Type: text/html;charset=UTF-8
Content-Length: 138
Date: Fri, 15 May 2009 01:48:42 GMT
Connection: close


I'm using rails 2.2.2. I can't override the set-cookie part and I also
want to remove the ETag and X-Runtime parts. I was able to remove the
Status and Cache-Control parts by using the delete method.

I tried using

cookies['JSESSIONID'] = <sessions_key>

but the my_session cookie is still there.


HTTP/1.1 200 OK
Connection: close
Date: Tue, 19 May 2009 02:45:20 GMT
Set-Cookie: _my_session=<session_key>; path=/; HttpOnly
ETag: "100098631aaee632fb77079e8a6c4932"
X-Runtime: 260ms
Content-Type: text/html; charset=utf-8
Content-Length: 137
Server: Mongrel 1.1.5


I got the headers above from wireshark. The first header is generated
by connecting to a java server.


thanks!
 
B

Brian Candler

Jim said:
I want a simple http header like the one below. ...
I'm using rails 2.2.2. I can't override the set-cookie part and I also
want to remove the ETag and X-Runtime parts.

Questions about Rails are best directed to a Rails forum.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,067
Latest member
HunterTere

Latest Threads

Top