Not sure if any of you already knew this, but you can force the user to login via NT Authentication.
<cflogin>
<cfif isDefined("cflogin")>
<cfif hash(cflogin.name) eq "TEST" and
hash(cflogin.password) eq "test">
<cfloginuser name="#cflogin.name#"
password="#cflogin.password#"
roles="admin"/>
<cfelse>
<cfheader statuscode="401"/>
<cfheader name="WWW-Authenticate" value="Basic realm=""My Securezone"""/>
<cfabort/>
</cfif>
<cfelse>
<cfheader statuscode="401"/>
<cfheader name="WWW-Authenticate" value="Basic realm=""My Securezone"""/>
<cfabort/>
</cfif>
</cflogin>
James Silva wrote:
Thanks Ryan. I already had that setting on 'auto login...'.
Had to add the intranet domain to the list of "local intranet" sites in IE to fix it.
cheers mate, _______________________ James Silva Web Production Gruden Pty Ltd
Tel: +61 02 9956 6388 Fax: +61 02 9956 8433 Email: [EMAIL PROTECTED] Web: www.gruden.com _______________________
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ryan Sabir Sent: Monday, 8 September 2003 1:48 PM To: CFAussie Mailing List Subject: [cfaussie] Re: network login username
Heya James,
In your Security Settings if you are using IE, you can set users to 'Automatically log in if in Intranet Zone' or something like that, which I believe will achieve what you are after. Not sure if you are free to fiddle with the user settings like that tho'.
bye!
--- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
MX Downunder AsiaPac DevCon - http://mxdu.com/
