On Nov 13, 3:34 am, "James Bennett" <[EMAIL PROTECTED]> wrote:
> On 11/12/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote:
>
> > So, without having tested it, you might be able to access
> > request._req.subprocess_env to get the information (although read the
> >mod_pythondocs first, particularly about add_common_vars(), since
> > that's certainly tripped me up in the past for non-Django-related
> > projects and I'm not sure when you have to call it and when you don't).
>
> Now that I look at the code, it appears that ModPythonHandler updates
> os.environ with the values from req.subprocess_env, so it may be that
> he can look in there.

You shouldn't rely on anything in os.environ as it will not work in a
multithreaded application.

If using mod_python 3.3.1, the best way of looking up SSL variables is
using the mod_python requst object method called 'ssl_var_lookup()'.
This possibly gives you access to a range of SSL variables not added
to req.subprocess_env. See documentation at:

  http://www.modpython.org/live/current/doc-html/pyapi-mprequest-meth.html

Graham


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to