On Fri, 09 May 2014 10:23:31 GMT, Darius Clark wrote:

On Fri, 09 May 2014 11:40:30 +0200, Sönke Ludwig wrote:

Am 09.05.2014 10:38, schrieb Darius Clark:

I do not know if this was meant to be but the vibe.web.web is not in vibe.d.

It only exists since the latest version 0.7.19, released on the 9th of
April. Maybe you need to upgrade?

Yes I went on and upgraded from 0.7.19-openssl to 0.7.20 beta and it seems to work now. Thank you :)

Last question, how are sessions handled using this method?

You can use member variables of type SessionVar!T to store data in a session. Setting a session variable will automatically start a new session if none is already running. For manual session access, you can define function parameters of type HTTPServerResponse and/or HTTPServerRequest to access startSession and terminateSession.

See also postLogin and postLogout in the example project.