Re: Authenticating a user using NT Authentication

2000-06-23 Thread jeff tapper

It may be as simple as a variable scoping problem.  a CFPARAM tag is being 
used to set a default value of Categories (no scope) to a blank 
string.  The cfa_contentObjectProperty tag is also referencing the the 
variable without a scope.  Its possible the two unscoped variables are 
actually referring to a variables.categories, and not the form.categories 
which they really mean.  I would try changing cfa_contentObjectProperty 
name="categories" value="#categories#" to cfa_contentObjectProperty 
name="categories" value="#form.categories#" and see if that helps.

At 12:04 PM 6/22/00 -0400, you wrote:


Hi Again,

Is there anyway to automatically authenticate a user (giving them access to
a CF application without having to login) using NT Authentication?

TIA,

Debbie

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or 
send a message to [EMAIL PROTECTED] with 'unsubscribe' in 
the body.

==
Jeff Tapper
[EMAIL PROTECTED]
Senior Allaire Platform Technologist
http://www.gtriad.com
G. Triad
==

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Authenticating a user using NT Authentication

2000-06-22 Thread Debbie McDaniel



Hi Again,

Is there anyway to automatically authenticate a user (giving them access to
a CF application without having to login) using NT Authentication?

TIA,

Debbie

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Authenticating a user using NT Authentication

2000-06-22 Thread David B. Brooks

Debbie,

I've had luck setting up a User Directory under the Advanced Security
Options and making it point to a specified the Windows NT domain.

Do the following:
(1) Create a User Directory, specifying which NT Domain you want to use.
(2) Create Security Context
(3) Add User Directory to the Security Context
(4) Create Policy
(5) Add Users to policy

Then using Cold Fusion, utilize the CFAUTHENTICATE tag:
CFAUTHENTICATE
SETCOOKIE="yes/no"
SECURITYCONTEXT="NameofSecurityContext"
USERNAME="UserName"
PASSWORD="Password"

Then call the IsAuthenticted() function to check if it succeeded or not.

This is a high level implementation.  If you need, reference the Allaire
Docs, but to me, they are high level implementation as well. So, good luck
:)

Hope this helps.

David Brooks
PC Pros, Inc.

-Original Message-
From: Debbie McDaniel [mailto:[EMAIL PROTECTED]]
Sent: Thursday, June 22, 2000 11:04 AM
To: '[EMAIL PROTECTED]'
Subject: Authenticating a user using NT Authentication




Hi Again,

Is there anyway to automatically authenticate a user (giving them access to
a CF application without having to login) using NT Authentication?

TIA,

Debbie


--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.