Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
The proxy class for ldap services exposed by ColdFusion.
public var attributes:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
For queries: comma-delimited list of attributes to return.
For queries, to get all attributes, specify ".
public var delimiter:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Separator between attribute name-value pairs.
Use this attribute if either of these situations exist:
- The
attributes
attribute specifies more than one item. - An attribute contains the default delimiter (semicolon),
for example:
mgrpmsgrejecttext;lang-en
The default value is ; (semicolon).
public var dn:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Distinguished name, for update action,
for example, "cn=BobJensen,o=AceIndustry,c=US"
public var filter:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Search criteria for action="query".
The default value is "objectclass =.
public var maxrows:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Maximum number of entries for LDAP queries.
public var modifyType:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
How to process an attribute in a multivalue list:
add
: appends it to any attributes.delete
: deletes it from the set of attributes.replace
: replaces it with specified attributes.
The default value is replace
.
public var password:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Password that corresponds to user name.
If secure ="CFSSL_BASIC"
, V2 encrypts the password before transmission.
public var port:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Port.
The default value is 389.
public var rebind:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
yes
: attempts to rebind referral callback and reissue query
by referred address using original credentials.no
: referred connections are anonymous.
The default value is no
.
public var referral:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Integer. Number of hops allowed in a referral.
A value of 0 disables referred addresses for LDAP; no data is returned.
public var scope:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Scope of search, from entry specified in start attribute for action="Query"
.
oneLevel
: entries one level below entry.base
: only the entry.subtree
: entry and all levels below it.
The default value is oneLevel
.
public var secure:Boolean
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Specifies the security to employ, and the required information.
If you specify this attribute, its value must be CFSSL_BASIC
,
which provides V2 SSL
encryption and server authentication.
public var separator:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Delimiter to separate attribute values of multi-value attributes.
Used by query, add, and modify actions, and by cfldap
to output
multi-value attributes.
The default value is , (comma).
public var server:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Host name or IP address of LDAP server.
public var sort:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Attribute(s) by which to sort query results. Use a comma delimiter.
public var sortControl:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
nocase
: case-insensitive sortasc
: ascending (a to z) case-sensitive sort.desc
: descending (z to a) case-sensitive sort.
The default value is asc
.
public var start:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Distinguished name of entry to be used to start a search.
public var startRow:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Used with action="query".
First row of LDAP query to insert into a ColdFusion query.
The default value is 1.
public var timeout:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Maximum length of time, in milliseconds, to wait for LDAP processing.
The default value is 60000.
public var userName:String
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
User ID.
The default value is (anonymous).
public function Ldap()
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.0 |
Creates an instance of the Ldap class.
override protected function convertResultInEvent(event:ResultEvent):ColdFusionServiceResultEvent
This is the overriden function of the default implementation is BasicService.
This function checks if the result returned is 2d array of serviceelement
If it is, it converts it into a 2d array of objects and creates
an instance of ColdFusionResultEvent and returns the event.
Parameters
Returns public function execute():void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Sends information to the ColdFusion service based on the action and the attributes that
the user sets.
© 2009 Adobe Systems Incorporated. All rights reserved.
Fri Aug 14 2009, 04:09 PM +05:30