<div dir="ltr"><div>If you're using "simple" sessions, you need to make sure you've only got one process since the cookies aren't shared between processes. That is, you probably got the cookie with one process and served the second request with another.<br>
<br></div><div>With the example in this tutorial, change the starman script to set the --workers to 1<br> <br><a href="http://perlmaven.com/getting-started-with-perl-dancer-on-digital-ocean">http://perlmaven.com/getting-started-with-perl-dancer-on-digital-ocean</a><br>
<br></div><div>cheers<br></div><div><br></div>Andrew<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Oct 30, 2013 at 12:23 PM, Gabor Szabo <span dir="ltr"><<a href="mailto:gabor@szabgab.com" target="_blank">gabor@szabgab.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi there,<br>
<br>
While testing an application I write in Dancer2 I was trying to<br>
test the login mechanism. For this I need to send back the cookie<br>
I received from the server. I have code like this:<br>
<br>
<br>
my $r2 = dancer_response POST => '/login',<br>
    params => {<br>
             username => $users{username},<br>
             password => $users{password},<br>
      },<br>
};<br>
<br>
my ($cookie) =  $r2->header('set-cookie') =~ /(dancer.session=[^;]+);/;<br>
diag $cookie;   #   dancer.session=UnD4WqseotQvyKMGxpoVXSUYRASXQ0TA<br>
<br>
<br>
my $r3 = dancer_response GET => '/', {<br>
    headers => [<br>
           [ 'Cookie' => $cookie ],<br>
    ],<br>
 };<br>
<br>
<br>
But the server responds to the second query as if the cookie<br>
was not received by it.<br>
The same works when using a regular browser.<br>
<br>
What am I doing wrong?<br>
What do I need to do in order for the  session cookie to be sent back?<br>
<br>
regards<br>
    Gabor<br>
_______________________________________________<br>
dancer-users mailing list<br>
<a href="mailto:dancer-users@dancer.pm">dancer-users@dancer.pm</a><br>
<a href="http://lists.preshweb.co.uk/mailman/listinfo/dancer-users" target="_blank">http://lists.preshweb.co.uk/mailman/listinfo/dancer-users</a><br>
</blockquote></div><br></div>