Authentication - MACROMEDIA COLDFUSION MX 7.0.2-USING COLDFUSION MX WITH FLEX 2 Use Manual

Table of Contents

Advertisement

The arguments are as follows:
is a list of arguments to pass to the
fillArgs
is the record to check to determine if it is in the result set
item
indicates whether the record is new
isCreate
A sample
fillContains
first or last name) are in the Contact item passed to the function, is as follows:
<cffunction name="fillContains" output="no" returnType="boolean"
access="remote">
>
<cfargument name="fillArgs" type="array" required="yes">
>
<cfargument name="item" type="samples.contact.Contact" required="yes">
>
<cfargument name="isCreate" type="boolean" required="yes">
>
>
<cfif ArrayLen(fillArgs) EQ 0>
>
<!--- This is the everything fill. --->
>
<cfreturn true>
>
<cfelseif ArrayLen(fillArgs) EQ 1>
>
<!--- This is a search fill. --->
>
<cfset search = fillArgs[1]>
>
<cfset first = item.getFirstName()>
>
<cfset last = item.getLastName()>
>
<!--- If the first or last name contains the search string, --->
>
<cfif (FindNoCase(search, first) NEQ 0) OR (FindNoCase(search, last)
> NEQ 0)>
>
<!--- this record is in the fill. --->
>
<cfreturn true>
>
<cfelse>
>
<!--- this record is NOT in the fill. --->
>
<cfreturn false>
>
</cfif>
>
</cfif>
>
>
<!--- By default, do the fill.--->
>
<cfreturn true>
>
</cffunction>

Authentication

To authenticate users when using the Flex Data Service Assembler, you use the Flex
setRemoteCredentials()
the FlexSession object, are passed to the ColdFusion application, where you can use the
tag to perform authentication. Alternatively, you can set credentials in the Flex
cflogin
destination, although this is not the recommended way to do so.
44
Using the Flex Data Service Assembler
method, which determines whether the
method on the DataService object. The credentials, which are in
method
fill
fill
arguments (part of the

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion mx

Table of Contents