Re: Un-baking a baked cookie

2008-01-04 Thread Perrin Harkins
On Jan 4, 2008 9:47 PM, Colin Wetherbee <[EMAIL PROTECTED]> wrote: > From the Apache2::Cookie documentation, bake() "adds a Set-Cookie > header to the outgoing headers table." Is there a way to undo this > without manually editing the headers, preferably with Apache2::Cookie > methods? Why don't

Re: Un-baking a baked cookie

2008-01-04 Thread Colin Wetherbee
Perrin Harkins wrote: On Jan 4, 2008 9:47 PM, Colin Wetherbee <[EMAIL PROTECTED]> wrote: From the Apache2::Cookie documentation, bake() "adds a Set-Cookie header to the outgoing headers table." Is there a way to undo this without manually editing the headers, preferably with Apache2::Cookie me

Re: Un-baking a baked cookie

2008-01-05 Thread David Dick
Perrin Harkins wrote: (As an aside, would somebody mind briefly explaining the difference between the Set-Cookie and Set-Cookie2 headers? I had never heard of Set-Cookie2, but a quick Google makes it sound like an RFC that never caught on. Agreed, with the extremely notable exception of HT

Re: Un-baking a baked cookie

2008-01-05 Thread Colin Wetherbee
Perrin Harkins wrote: On Jan 5, 2008 12:56 AM, Colin Wetherbee <[EMAIL PROTECTED]> wrote: Well, I don't mind editing the headers, but I'd rather use standardized API calls (i.e. through Apache2::Cookie and friends) so that I don't have to worry about what's going on under the hood, updating my c

Re: Un-baking a baked cookie

2008-01-05 Thread Perrin Harkins
On Jan 5, 2008 12:56 AM, Colin Wetherbee <[EMAIL PROTECTED]> wrote: > Well, I don't mind editing the headers, but I'd rather use standardized > API calls (i.e. through Apache2::Cookie and friends) so that I don't > have to worry about what's going on under the hood, updating my code for > Apache2 c

Re: Un-baking a baked cookie

2008-01-07 Thread Peter Haworth
On Sat, 05 Jan 2008 00:56:49 -0500, Colin Wetherbee wrote: > > On Jan 4, 2008 9:47 PM, Colin Wetherbee <[EMAIL PROTECTED]> > > wrote: > >> From the Apache2::Cookie documentation, bake() "adds a Set- > >> Cookie header to the outgoing headers table." Is there a way to > >> undo this without manua

Re: Un-baking a baked cookie

2008-01-07 Thread Rafael Caceres
Colin, At least with CGI.pm, what I do is 'bake' an empty cookie. That has the desired effect. Rafael Caceres On Fri, 2008-01-04 at 21:47 -0500, Colin Wetherbee wrote: > Good evening. > > Is it possible to un-bake a baked cookie? > > From the Apache2::Cookie documentation, bake() "adds a Set-Co

Re: Un-baking a baked cookie

2008-01-08 Thread Colin Wetherbee
Peter Haworth wrote: On Sat, 05 Jan 2008 00:56:49 -0500, Colin Wetherbee wrote: On Jan 4, 2008 9:47 PM, Colin Wetherbee <[EMAIL PROTECTED]> wrote: From the Apache2::Cookie documentation, bake() "adds a Set- Cookie header to the outgoing headers table." Is there a way to undo this without man