Re: Apache::Session::Object

2000-07-07 Thread Nathan Wiger
Perrin- > modifying Apache::Session to support both interfaces and sending Jeffrey > the patch. This is a good suggestion. I'll try modifying Apache::Session first and sending Jeff the patch. If he doesn't want to integrate it I'll package it as a separate module. -Nate

Re: Apache::Session::Object

2000-07-06 Thread Gunther Birznieks
This is somewhat off the topic of your original post, but I have to admit that I really am a tad alarmed at the interest in storing a credit card number in a local session. Usually CC numbers should at most either be emailed (PGPed) directly to the customer without any temp file creation or pa

Re: Apache::Session::Object

2000-07-06 Thread Perrin Harkins
On Thu, 6 Jul 2000, Nathan Wiger wrote: > > $session->STORE('visa_number') = '7'; > > print $session->FETCH('visa_number'); > > $session->DELETE('visa_number'); > > This isn't really a documented interface - it's an overloading of the > tie methods so that the tied hash interface works. You can't

Re: Apache::Session::Object

2000-07-06 Thread Nathan Wiger
Perrin- > Is there a reason you can't use the OO interface that Apache::Session > comes with? > > $session->STORE('visa_number') = '7'; > print $session->FETCH('visa_number'); > $session->DELETE('visa_number'); This isn't really a documented interface - it's an overloading of the tie methods so

Re: Apache::Session::Object

2000-07-06 Thread Perrin Harkins
On Thu, 6 Jul 2000, Nathan Wiger wrote: > I've created an object interface to Apache::Session. It's a simple > module that I've called Apache::Session::Object (seemed pretty > intuitive) that presents the following interface: > ># Create new session using t

Apache::Session::Object

2000-07-06 Thread Nathan Wiger
Hi- I've created an object interface to Apache::Session. It's a simple module that I've called Apache::Session::Object (seemed pretty intuitive) that presents the following interface: # Create new session using the default File store use Apache::Session::Object; my