Re: [KCFusion] Implementing an Enterprise Single Login

2002-04-19 Thread Richard Morrison
We are using LDAP at work to perform similar user validation, I would recomend using Client Variables instead of cookies.I don't see why you would want to use java servlets for this process, heres sample code: 1) In your index.cfm file include this or similar code: cfif NOT

Re: [KCFusion] Implementing an Enterprise Single Login

2002-04-19 Thread Richard Morrison
By the way, if you insist on using Cookies accross multiple sub-domains SetDomainCookies=Yes, i.e xxx.domain.com, ttt.domain.com, etc.. if your talking about different domains, i.e www.xxx.com www.yyy.com, you won't be SetdomainCookies won't work At 09:25 AM 4/20/2002 +0400, you wrote: We are

RE: [KCFusion] Implementing an Enterprise Single Login

2002-04-18 Thread LaPlante, Bryan
Message-From: Safley, Nicole [mailto:[EMAIL PROTECTED]]Sent: Wednesday, April 17, 2002 4:56 PMTo: [EMAIL PROTECTED]Subject: RE: [KCFusion] Implementing an Enterprise Single Login Yes. The site will be secure, and will span multiple domains. -Original Message-From

RE: [KCFusion] Implementing an Enterprise Single Login

2002-04-18 Thread Dunwiddie, Bruce
or drawbacks to this solution other than the design. -Original Message-From: LaPlante, Bryan [mailto:[EMAIL PROTECTED]]Sent: Thursday, April 18, 2002 10:38 AMTo: '[EMAIL PROTECTED]'Subject: RE: [KCFusion] Implementing an Enterprise Single Login I didn't realize this solution

RE: [KCFusion] Implementing an Enterprise Single Login

2002-04-17 Thread LaPlante, Bryan
Do you mean that you want to share a login among multiple cfapplication's? You could use the server scope to store your variable. Using a cookie will cause some issues if you try to access it from a separate domain, server variables will over come that. I would be glad to help you set this

Re: [KCFusion] Implementing an Enterprise Single Login

2002-04-17 Thread Robert
Nicole, Are you worried that the cookie with be unreadable because the site will be 'secure' with a certificate? Because, if you're using session variables and cfapplication it isnt affected by having a SSL certificate. Is that your concern? Thanks, Robert - Original Message -

RE: [KCFusion] Implementing an Enterprise Single Login

2002-04-17 Thread Safley, Nicole
: [KCFusion] Implementing an Enterprise Single Login Do you mean that you want to share a login among multiple cfapplication's? You could use the server scope to store your variable. Using a cookie will cause some issues if you try to access it from a separate domain, server variables

RE: [KCFusion] Implementing an Enterprise Single Login

2002-04-17 Thread Safley, Nicole
Yes. The site will be secure, and will span multiple domains. -Original Message-From: Robert [mailto:[EMAIL PROTECTED]]Sent: Wednesday, April 17, 2002 4:53 PMTo: [EMAIL PROTECTED]Subject: Re: [KCFusion] Implementing an Enterprise Single Login Nicole, Are you worried

Re: [KCFusion] Implementing an Enterprise Single Login

2002-04-17 Thread Robert
- Original Message - From: Safley, Nicole To: [EMAIL PROTECTED] Sent: Wednesday, April 17, 2002 4:54 PM Subject: RE: [KCFusion] Implementing an Enterprise Single Login Actually, the majority of the applications are on separate domains