Method: (SERVICE AFTER COOKIE-SESSION-APPLICATION COOKIE-SESSION-REQUEST-CONTEXT)

Documentation

Add a Set-Cookie for the session-id to the response. The cookie is named +ucw-session-name+ and its value is the id of context's session.

Source

(defmethod service :after ((app cookie-session-application) (context cookie-session-request-context))
  "Add a Set-Cookie for the session-id to the response.

The cookie is named +ucw-session-name+ and its value is the id of
context's session."
  (setf (cookie (context.response context) +ucw-session-name+)
        (make-instance 'cookie :value (session.id (context.session context)))))
Source Context