[Cppcms-users] Cookies
Brought to you by:
artyom-beilis
|
From: Saikumar G. <sai...@gm...> - 2013-04-29 04:08:59
|
The cookies set in the cppcms app is not visible in the response header at
the client side.
response().set_cookie(cppcms::http::cookie("COOKIE1","value"));
The configuration is through fastcgi from lighttpd.
fastcgi.server = (
"/main" => ((
"bin-path" => "/home/dev/myapp/myapp -c /home/dev/myapp/config.js",
"socket" => "/tmp/hello-fcgi-socket",
"max-procs" => 1,
"check-local" => "disable"
))
)
Could it be because the lighttpd is not forwarding the cookies sent from the
cppcms app ?
Am I doing something wrong with the settings ?
|