Re: [users@httpd] cookie read/write in module handler

2013-12-11 Thread Allasso Travesser
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

Re: [users@httpd] cookie read/write in module handler

2013-12-11 Thread Rainer M. Canavan
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"

Re: [users@httpd] cookie read/write in module handler

2013-12-11 Thread Allasso Travesser
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

Re: [users@httpd] cookie read/write in module handler

2013-12-11 Thread Eric Covener
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

[users@httpd] cookie read/write in module handler

2013-12-11 Thread Allasso Travesser
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