RE: [Junk E-Mail - LOW] [flexcoders] My authentication help

2006-07-12 Thread Shannon Hicks
Can we see the CFC? Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick CollinsSent: Wednesday, July 12, 2006 9:18 AMTo: flexcodersSubject: [Junk E-Mail - LOW] [flexcoders] My authentication help I saw someone else posting about having custom

Re: [Junk E-Mail - LOW] [flexcoders] My authentication help

2006-07-12 Thread Tom Chiverton
On Wednesday 12 July 2006 15:31, Shannon Hicks wrote: Can we see the CFC? Shannon could also turn on the flex gateway debug (bottom of the services xml file) and double-check what is coming back. IIRC, return bools from CF appear as strings in AS. -- Tom Chiverton

Re: [Junk E-Mail - LOW] [flexcoders] My authentication help

2006-07-12 Thread Nick Collins
cffunction name=login access=remote returntype=boolean cfargument name=email required=false/ cfargument name=password required=false/ CFQUERY name=GetUser datasource=#DSN# SELECT tblSFUsers.UserID, tblSFUsers.User_Name, tblSFUsers.Password FROM tblSFUsers WHERE User_Name= cfqueryparam

Re: [Junk E-Mail - LOW] [flexcoders] My authentication help

2006-07-12 Thread Nick Collins
Ok, so CF returns booleans as strings... so how might I go about converting those strings back to booleans in the AS code?On 7/12/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 12 July 2006 15:31, Shannon Hicks wrote: Can we see the CFC?Shannon could also turn on the flex gateway