Apache mod_python and Sessions

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Markus Schaber

    Apache mod_python and Sessions

    Hi,

    Does anybody know a module that works with Apache 1.3 mod_python and provides session tracking?

    I tried pso, but this didn't work as it should. Running in mod_python gives me one session per server process, and the session data is not rewritten to disk. Explicitly calling session.save() (as stated in the doc) fails with the error message that a dictionary doesn't have the "save" attribute. Calling it as CGI sputs the log files with error messages about missing permissions.

    The apache-provided mod_session seems to miss python bindings.

    I tried to google, but only found perl modules (except the pso package that doesn't work.)


    Does anybody know a working solution?

    Thanks,
    Markus
  • Dale Strickland-Clak

    #2
    Re: Apache mod_python and Sessions

    Markus Schaber pushed the bounds of literature with:
    [color=blue]
    > Hi,
    >
    > Does anybody know a module that works with Apache 1.3 mod_python and
    > provides session tracking?
    >
    ><Snip>
    > Thanks,
    > Markus
    >[/color]

    This is pretty easy to do by hand using MD5 and a cookie.

    --
    Dale Strickland-Clark
    Riverhall Systems Ltd, www.riverhall.co.uk

    Comment

    • Ng Pheng Siong

      #3
      Re: Apache mod_python and Sessions

      According to Dale Strickland-Clak <dale@riverhall .NOSPAM.co.uk>:[color=blue]
      > Markus Schaber pushed the bounds of literature with:[color=green]
      > > Does anybody know a module that works with Apache 1.3 mod_python and
      > > provides session tracking?[/color]
      >
      > This is pretty easy to do by hand using MD5 and a cookie.[/color]

      Throw in a secret and get HMAC-MD5.

      See AuthCookies in M2Crypto, http://www.post1.com/home/ngps/m2


      --
      Ng Pheng Siong <ngps@netmemeti c.com>

      http://firewall.rulemaker.net -+- Manage Your Firewall Rulebase Changes
      http://www.post1.com/home/ngps -+- Open Source Python Crypto & SSL

      Comment

      • Van Gale

        #4
        Re: Apache mod_python and Sessions

        Markus Schaber wrote:[color=blue]
        > Hi,
        >
        > Does anybody know a module that works with Apache 1.3 mod_python and provides session tracking?[/color]

        Most of the python web programming frameworks have session handling.
        Here are a few:

        Quixote http://www.mems-exchange.org/software/quixote/doc/
        Albatross http://www.object-craft.com.au/projects/albatross/
        Webware http://webware.sourceforge.net/
        Jonpy http://jonpy.sf.net
        Spyce http://spyce.sf.net
        JOTweb http://jotweb.tummy.com/

        More information can be found at:




        Here's an example of a module that does its own session handling using
        MySQL for storage:



        Van Gale

        Comment

        • Markus Schaber

          #5
          Re: Apache mod_python and Sessions

          Hi,

          On Fri, 4 Jul 2003 13:16:17 +0200
          Markus Schaber <scpusenet@werb ung.schabi.de> wrote:
          [color=blue]
          > Does anybody know a module that works with Apache 1.3 mod_python and
          > provides session tracking?[/color]

          Thanks for all that answered, I now found the nice debian package
          python_weblib that does what I need (Additionally, my boss suggested
          that we should not use mod_python but CGI instead.)

          I just was too stupid by including "apache" in all my search requests on google and apt-cache - this filtered out lots of useful answers...

          Thanks,
          Markus

          Comment

          • Irmen de Jong

            #6
            Re: Apache mod_python and Sessions

            Markus Schaber wrote:[color=blue]
            > python_weblib that does what I need (Additionally, my boss suggested
            > that we should not use mod_python but CGI instead.)[/color]

            What!? Why!?
            Any sane explanation why you should go with slow, outdated CGI scripts
            instead of the nice, fast web server integration of mod_python?

            --Irmen

            Comment

            • Markus Schaber

              #7
              Re: Apache mod_python and Sessions

              Hello,

              On Mon, 07 Jul 2003 19:50:11 +0200
              Irmen de Jong <irmen@-NOSPAM-REMOVETHIS-xs4all.nl> wrote:
              [color=blue]
              > Markus Schaber wrote:[color=green]
              > > python_weblib that does what I need (Additionally, my boss suggested
              > > that we should not use mod_python but CGI instead.)[/color]
              >
              > What!? Why!?
              > Any sane explanation why you should go with slow, outdated CGI scripts
              > instead of the nice, fast web server integration of mod_python?[/color]

              The script will have a very low usage (maybe about ten sessions a month). And it spends lots of time doing ldap database queries, so the starting overhead doesn't hurt so much.

              Additionally, the webserver currently doesn't have mod_python installed, and there is the fear that every additional module has disadvantages (bigger startup/fork time, potential bugs, memory footprint).

              I hope that these two argumens are "sane" in your world, at least they are sane enough for my boss.

              Greets,
              Markus

              Comment

              • Irmen de Jong

                #8
                Re: Apache mod_python and Sessions

                Markus Schaber wrote:
                [color=blue]
                > The script will have a very low usage (maybe about ten sessions a month).
                > And it spends lots of time doing ldap database queries, so the starting
                > overhead doesn't hurt so much.[/color]

                This clears it all up. No further comments ;-)

                --Irmen

                Comment

                Working...