Hi!

> Embperl uses Apache::SessionX for storage (HTML::Embperl::Session before
> 1.3.4, but there is only a small difference). You can use this module in
> your CGI scripts too, to access the session data. You need to pass the
same
> setup parameters to Apache::SessionX and the session id.

Thanks...

Now I have reached to another problem:
I create session in CGI program

my %session;
tie %session, 'Apache::SessionX', undef,

{

object_store => 'DBIStore',

lock_manager => 'SysVSemaphoreLocker',

DataSource => 'dbi:mysql:'.$config{'dbname'},

UserName => $config{'dbuser'},

Password => $config{'dbpass'},

};

$session{username} = "$Username";



How can I call that same session out in EmbPerl mode ($udat{username})?



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to