Re: How do I get hold of session information?

2010-10-25 Thread Martin Townsend
o: modules-dev@httpd.apache.org Sent: Tue, 19 October, 2010 17:46:40 Subject: Re: How do I get hold of session information? On Tue, Oct 19, 2010 at 17:30, Paul Donaldson wrote: Thank you. I will take a look at mod_session. Will my module be able to check if mod_session is "enabled" (sorry, I

Re: How do I get hold of session information?

2010-10-20 Thread Eric Covener
> It looks like mod_session has an API defined in > http://httpd.apache.org/docs/2.2/sections.html and used by > mod_auth_form -- I'd probably start there. whoops, wrong buffer: modules/session/mod_session.h -- Eric Covener cove...@gmail.com

Re: How do I get hold of session information?

2010-10-20 Thread Eric Covener
On Wed, Oct 20, 2010 at 8:05 AM, Paul Donaldson wrote: > For example, the mod_session page states: > > Creating a session is as simple as turning the session on, and deciding where > the session will be stored. In this example, the session will be stored on the > browser, in a cookie called sessio

Re: How do I get hold of session information?

2010-10-20 Thread Ben Noordhuis
Most people hack on Apache in their own time and nobody likes writing documentation so yes, what documentation there is, is often sparse. "Use the source, Luke" is the best advice I can give you.

Re: How do I get hold of session information?

2010-10-20 Thread Ray Morris
Browser based session Session On SessionCookieName session path=/ But it doesn't say where or how to do this. I'm sure everyone in this group will take that sort of thing for granted, but it's infuriating for those of us coming to Apache Modules for this first time. It would be redundant

Re: How do I get hold of session information?

2010-10-20 Thread Paul Donaldson
Sent: Tue, 19 October, 2010 17:46:40 Subject: Re: How do I get hold of session information? On Tue, Oct 19, 2010 at 17:30, Paul Donaldson wrote: > Thank you. I will take a look at mod_session. Will my module be able to check >if > mod_session is "enabled" (sorry, I don't

Re: How do I get hold of session information?

2010-10-19 Thread Ben Noordhuis
On Tue, Oct 19, 2010 at 17:30, Paul Donaldson wrote: > Thank you. I will take a look at mod_session. Will my module be able to check > if > mod_session is "enabled" (sorry, I don't know the Apache terminology) and, if > it > is, talk to it and ask it for what it has stored in its session? Yes.

Re: How do I get hold of session information?

2010-10-19 Thread Paul Donaldson
n Noordhuis To: modules-dev@httpd.apache.org Sent: Tue, 19 October, 2010 16:11:46 Subject: Re: How do I get hold of session information? On Tue, Oct 19, 2010 at 17:05, Paul Donaldson wrote: > I assume that if I were to make a request to a web site hosted on Apache then > the capability exists for o

Re: How do I get hold of session information?

2010-10-19 Thread Ben Noordhuis
On Tue, Oct 19, 2010 at 17:05, Paul Donaldson wrote: > I assume that if I were to make a request to a web site hosted on Apache then > the capability exists for one of the server side web pages to create a session > and store some piece of data in it. What I want to do in my module is get hold > o

Re: How do I get hold of session information?

2010-10-19 Thread Paul Donaldson
ession (if it exists) and read data from it. From: Eric Covener To: modules-dev@httpd.apache.org Sent: Tue, 19 October, 2010 14:56:32 Subject: Re: How do I get hold of session information? On Tue, Oct 19, 2010 at 9:36 AM, Paul Donaldson wrote: > Hello, > &

Re: How do I get hold of session information?

2010-10-19 Thread Eric Covener
On Tue, Oct 19, 2010 at 9:36 AM, Paul Donaldson wrote: > Hello, > > I have a module that does little more than take the information in the http > request and forward it to another web site. I can get information from the > query > string easily enough, but is there any way I can get information a