in reply to CGI Perl to web service

Personally I'd avoid form-and-cookie-based authentication for a web service. Use HTTP Basic or (better) HTTP Digest, or something fancy like HTTPS client certificates, or OAuth if you're a masochist.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^2: CGI Perl to web service
by Anonymous Monk on Apr 12, 2013 at 12:33 UTC
    https + form/cookie = tada