http://www.perlmonks.org?node_id=389304


in reply to Re^4: Security/Ease of use Question
in thread Security/Ease of use Question

I think your best option is to pass the session id on the request, with a parameter or a path component:

http://my.site.net/the/path/to/the/page/SESSIONID

or

http://my.site.net/the/path/to/the/page?sid=SESSIONID

or something to that effect.

I personally prefer the first method, since it's less confusing to spiders and bots (and I'd like my site to be indexed by search engines).

-- 
        dakkar - Mobilis in mobile

Most of my code is tested...

Perl is strongly typed, it just has very few types (Dan)