Well there's an article here:

http://www.macromedia.com/devnet/server_archive/articles/integrating_cf_apps_w_ms_active_directory.html#auth

But if their windows login is the same as AD, so you can also try this:
   <cftry>
                    <cfscript>
                    ntauth = createObject("java", "jrun.security.NTAuth");
                    ntauth.init("SomeDomain");
                    ntauth.authenticateUser(FORM.UserName, FORM.Password);
                    auth = true;
                    </cfscript>
            <cfcatch>
                    <cfset auth = false>
            </cfcatch>
     </cftry>




sanjayd wrote:

>Guys:
>
>I need to authenticate my users via 'Active Directory'. Any ideas what
>is the best way to do this ? Thanks - Sanjay
>
>
>
>
>
> 
>Yahoo! Groups Links
>
>
>
> 
>
>
>
>  
>





 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to