Easy fix, my “cookie” wasn’t in the proper format.
“cookiename=value” works.
It as sending them, but the browser (Safari) wasn’t sending them back.
(Firefox actually did send it back though, even without the proper format)
Thanks.
Allasso
On Dec 11, 2013, at 12:09 PM, Rainer M. Canavan
wr
On Dec 11, 2013, at 19:53 , Allasso Travesser wrote:
>>> I am attempting to write a cookie, then retrieve it later. I am doing this
>>> in a handler, using simple code found from (sparse) information I have
>>> gathered from google searches:
>>>
>>> apr_table_set(r->headers_out, "Set-Cookie"
On Dec 11, 2013, at 11:31 AM, Eric Covener wrote:
> On Wed, Dec 11, 2013 at 1:27 PM, Allasso Travesser
> wrote:
>> Hello,
>>
>> I am attempting to write a cookie, then retrieve it later. I am doing this
>> in a handler, using simple code found from (sparse) information I have
>> gathered fro
On Wed, Dec 11, 2013 at 1:27 PM, Allasso Travesser
wrote:
> Hello,
>
> I am attempting to write a cookie, then retrieve it later. I am doing this
> in a handler, using simple code found from (sparse) information I have
> gathered from google searches:
>
> apr_table_set(r->headers_out, "Set-Co
Hello,
I am attempting to write a cookie, then retrieve it later. I am doing this in
a handler, using simple code found from (sparse) information I have gathered
from google searches:
apr_table_set(r->headers_out, "Set-Cookie", "value");
char* cookie = apr_table_get(r->headers_in, "Set-Coo