Re: [ RFC ] New Module Apache::SessionManager

2000-10-29 Thread Greg Cope
Matt Sergeant wrote: On Wed, 25 Oct 2000, Gerald Richter wrote: I have three anonations: 1.) $r-header_out(Location = $r-uri()); Also this code works with most browsers it doesn't conform to the HTTP specs. A location header must include a host part. Shouldn't be to hard add

Re: [ RFC ] New Module Apache::SessionManager

2000-10-29 Thread Greg Cope
darren chamberlain wrote: Greg Cope ([EMAIL PROTECTED]) said something to this effect: $r-header_out(Location = 'http://' . $r - server - server_hostname . $r-uri()); Seems easy - will add it in. It's not that simple, of course -- you need to maintain port numbers and all that. I

Re: [ RFC ] New Module Apache::SessionManager

2000-10-27 Thread Greg Cope
Gerald Richter wrote: Hi Greg, I also hot heard anything back from the poeple I sent a copy to, I can hence only assume that its so good that it's made them speachless ;-) That's more a matter of time, then a matter of speach... I am up against a deadline and hence will be a

Re: [ RFC ] New Module Apache::SessionManager

2000-10-27 Thread darren chamberlain
Greg Cope ([EMAIL PROTECTED]) said something to this effect: $r-header_out(Location = 'http://' . $r - server - server_hostname . $r-uri()); Seems easy - will add it in. It's not that simple, of course -- you need to maintain port numbers and all that. I recommend using Apache::URI --

Re: [ RFC ] New Module Apache::SessionManager

2000-10-25 Thread Gerald Richter
Hi Greg, I also hot heard anything back from the poeple I sent a copy to, I can hence only assume that its so good that it's made them speachless ;-) That's more a matter of time, then a matter of speach... Greg, I have taken a look at your module and the code and I think it is really

Re: [ RFC ] New Module Apache::SessionManager

2000-10-22 Thread Greg Cope
Gunther Birznieks wrote: I believe Greg is familiar with Apache::Session. There have been discussions about this before. A session manager manages the workflow around sessions. A session stores information. They are two different things. In addition, I believe the name session manager has

Re: [ RFC ] New Module Apache::SessionManager

2000-10-21 Thread Greg Cope
Greg Cope wrote: Dear ALL I've writen a module that does transparent session management via either Cookies, Munged URI or Query Args. It has quite a few options to change the behavour, and appears stable in my developement environment. What I suggest is that unless there is a major

Re: [ RFC ] New Module Apache::SessionManager

2000-10-21 Thread James G Smith
Check out Apache::Session, available on CPAN and see if your code could be moulded to fit it's way of thinking. If they are too much different, then you might want to consider contacting the module list to see if what you have is a good name (it probably is) before going all out with

[ RFC ] New Module Apache::SessionManager

2000-10-17 Thread Greg Cope
Dear ALL I've writen a module that does transparent session management via either Cookies, Munged URI or Query Args. It has quite a few options to change the behavour, and appears stable in my developement environment. What I suggest is that unless there is a major objection I call it

Re: [ RFC ] New Module Apache::SessionManager

2000-10-17 Thread Gunther Birznieks
I like the name as it works well with our naming (SessionManager, Session hierarchy) so I can probably write a wrapper that assumes your SessionManager is embedded in Apache and it's not confusing for our users who want to configure our apps to use your session manager. Thanks, Gunther