2015-10-16 6:50 GMT-05:00 Joerg Fallmann <fall@tbi.univie.ac.at>:
Hi, I already asked around a bit about problems with delayed and how I could work around, but I thought the subject does not really fit anymore to my current problem.
What I'm trying to do currently is to find a way to forward from routeA with parameters to routeB after the template has been processed and sent to the client.
Does anybody know a way how this could work?
DID NOT MEAN TO SEND EARLIER MESSAGE ## SNIPPET End of Route A session username => $input_hash->{UName}; session UFname => $FN; session UID => $UID; session ScnName => $scn_name; redirect '/route_B'; } get '/route_B' => sub { my $uname = session 'username'; my $ufname= session 'UFname'; my $UID = session 'UID'; etc...