Re: Active Directory Authentication

2006-05-08 Thread D
Thanks to everyone for your help..I'm not familiar with the packages mentioned, so this will definitely be a learning experience! -- http://mail.python.org/mailman/listinfo/python-list

Re: Active Directory Authentication

2006-05-06 Thread Michael Ströder
Stephan Diehl wrote: > On Fri, 05 May 2006 05:39:08 -0700, D wrote: > >>Is it possible to have Python authenticate with Active Directory? >>Specifically what I'd like to do is have a user enter a >>username/password, then have Python check the credentials with AD - if >>what they entered is valid,

Re: Active Directory Authentication

2006-05-05 Thread Roger Upole
If you have Pywin32 installed, you can use the win32com.adsi package to open an object with username/password credentials. See adsi.ADsOpenObject for details. Adsi also contains a number of interfaces for dealing with users, containers, etc. Roger "D" <[EMAIL PROTECTED]> wrote in messag

Re: Active Directory Authentication

2006-05-05 Thread Philippe Martin
Benji York wrote: > D wrote: >> Is it possible to have Python authenticate with Active Directory? >> Specifically what I'd like to do is have a user enter a >> username/password, then have Python check the credentials with AD - if >> what they entered is valid, for example, it returns a 1, otherwi

Re: Active Directory Authentication

2006-05-05 Thread Benji York
D wrote: > Is it possible to have Python authenticate with Active Directory? > Specifically what I'd like to do is have a user enter a > username/password, then have Python check the credentials with AD - if > what they entered is valid, for example, it returns a 1, otherwise a > 0.. Thanks! Inst

Re: Active Directory Authentication

2006-05-05 Thread Stephan Diehl
On Fri, 05 May 2006 05:39:08 -0700, D wrote: > Is it possible to have Python authenticate with Active Directory? > Specifically what I'd like to do is have a user enter a > username/password, then have Python check the credentials with AD - if > what they entered is valid, for example, it returns

Re: Active Directory Authentication

2006-05-05 Thread Christoph Haas
On Fri, May 05, 2006 at 05:39:08AM -0700, D wrote: > Is it possible to have Python authenticate with Active Directory? > Specifically what I'd like to do is have a user enter a > username/password, then have Python check the credentials with AD - if > what they entered is valid, for example, it ret

Active Directory Authentication

2006-05-05 Thread D
Is it possible to have Python authenticate with Active Directory? Specifically what I'd like to do is have a user enter a username/password, then have Python check the credentials with AD - if what they entered is valid, for example, it returns a 1, otherwise a 0.. Thanks! -- http://mail.python.