|
IP*Works! SSL V9 | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectipworksssl.Ldaps
public class Ldaps
The LDAPS Bean is used to search, manage, and maintain Internet Directory (LDAP) servers.
The LDAPS Bean is the SSL-enabled equivalent of the IP*Works! LDAP bean. The main difference is the introduction of a set of new configuration settings, properties and events that deal with SSL security. The ipworksssl.Ldaps#config and {@link ipworksssl.Ldaps#config configuration settings determine which protocols are enabled and at what security level. The {@link ipworksssl.Ldaps#getSSLCert SSLCert} property is used to select a client certificate if the server is requesting client authentication. The {@link ipworksssl.Ldaps#config configuration setting, together with the {@link ipworksssl.LdapsSSLServerAuthenticationEvent SSLServerAuthentication} event allow you to check the server identity and other security attributes. Finally, the {@link ipworksssl.LdapsSSLStatusEvent SSLStatus} event provides information about the SSL handshake.
The LDAPS Bean implements a standard LDAP client as specified in RFC 1777, 2251, and other LDAP RFCs. Support for both LDAP v2 and v3 is provided.
The first step in using the bean is specifying the {@link ipworksssl.Ldaps#getServerName ServerName} , a {@link ipworksssl.Ldaps#getDN DN} (Distinguished Name) to bind as, and optionally a {@link ipworksssl.Ldaps#getPassword Password} . Then you can call one or more of the bean methods to act upon the server. Server responses are normally received through the {@link ipworksssl.LdapsResultEvent Result} event. The only exceptions are search requests which result in one or more {@link ipworksssl.LdapsSearchResultEvent SearchResult} events, followed by a final {@link ipworksssl.LdapsSearchCompleteEvent SearchComplete} event.
Attributes are set and returned through the {@link ipworksssl.Ldaps#getAttributes Attributes} collection . Other command arguments are specified through other properties. These are specified in detail in each method.
Search filters are to be specified as string arguments to the {@link ipworksssl.Ldaps#search Search} method. The format must be a standard LDAP search string as specified in RFC 1558. Other search attributes are set in properties such as {@link ipworksssl.Ldaps#getSearchScope SearchScope} , {@link ipworksssl.Ldaps#getSearchTimeLimit SearchTimeLimit} , {@link ipworksssl.Ldaps#getSearchSizeLimit SearchSizeLimit} , {@link ipworksssl.Ldaps#isSearchReturnValues SearchReturnValues} , and {@link ipworksssl.Ldaps#getSearchDerefAliases SearchDerefAliases} .
The bean operates synchronously by default (waits for a response before returning control to the caller), however, the bean may also operate asynchronously (return control immediately), by setting {@link ipworksssl.Ldaps#getTimeout Timeout} to 0. Please refer to the {@link ipworksssl.Ldaps#getTimeout Timeout} property for more information.
| Field Summary | |
|---|---|
static int |
amDigestMD5
|
static int |
amKerberos
|
static int |
amNegotiate
|
static int |
amSimple
|
static int |
sdaAlways
|
static int |
sdaFindingBaseObject
|
static int |
sdaInSearching
|
static int |
sdaNever
|
static int |
ssBaseObject
|
static int |
sslAutomatic
|
static int |
sslExplicit
|
static int |
sslImplicit
|
static int |
sslNone
|
static int |
ssSingleLevel
|
static int |
ssWholeSubtree
|
| Constructor Summary | |
|---|---|
Ldaps()
Creates an instance of Ldaps Bean. |
|
Ldaps(java.lang.String runtimeLicense)
Creates an instance of Ldaps Bean with specified run-time license. |
|
| Method Summary | |
|---|---|
void |
abandon(int messageId)
Asks the server to abandon a request. |
void |
add()
Adds an entry specified by DN to the directory server using the type and value attributes defined in the Attributes collection
. |
void |
addLdapsEventListener(LdapsEventListener l)
|
java.lang.String |
attr(java.lang.String attrType)
Returns the value of the specified LDAP attribute. |
void |
bind()
Connects and binds to the directory server. |
void |
compare()
Compares attributes and values with those of the entry specified by DN . |
java.lang.String |
config(java.lang.String configurationString)
Sets or retrieves a {@link ipworksssl.Ldaps#config configuration setting. |
void |
delete()
Deletes an entry specified by DN from the directory server. |
void |
doEvents()
Processes events from the internal message queue. |
void |
extendedRequest(java.lang.String requestName,
byte[] requestValue)
Performs an LDAP V3 Extended Operation. |
LDAPAttributeList |
getAttributes()
Attributes for the current entry. |
int |
getAuthMechanism()
The authentication mechanism to be used when connecting to the LDAP server. |
java.lang.String |
getDN()
The Distinguished Name used as the base for LDAP operations. |
Firewall |
getFirewall()
A set of properties related to firewall access. |
int |
getLDAPVersion()
The version of LDAP used. |
java.lang.String |
getLocalHost()
The name of the local host or user-assigned IP interface through which connections are initiated or accepted. |
int |
getMessageId()
The message identifier for the next LDAP request. |
int |
getPageSize()
The maximum number of results per page for the Search method. |
java.lang.String |
getPassword()
The password used to authenticate to the LDAP server. |
LDAPReferenceList |
getReferences()
Collection of references returned from the server. |
int |
getResultCode()
The result code returned in the last server response. |
java.lang.String |
getResultDescription()
The descriptive text returned in the last server response (if any). |
java.lang.String |
getResultDN()
The Distinguished Name returned in the last server response (if any). |
int |
getSearchDerefAliases()
Controls alias dereferencing during searching. |
int |
getSearchScope()
Controls the scope of LDAP search operations. |
int |
getSearchSizeLimit()
Maximum number of entries that can be returned by the next search operation. |
int |
getSearchTimeLimit()
A time limit for the next search operation (in seconds). |
java.lang.String |
getServerName()
The name or address of the LDAP server. |
int |
getServerPort()
The server port for the LDAP connection (default is 636). |
java.lang.String |
getSortAttributes()
A string of attribute names to sort on with optional relative matching rules. |
Certificate |
getSSLAcceptServerCert()
Instructs the bean to unconditionally accept the server certificate that matches the supplied certificate. |
Certificate |
getSSLCert()
The certificate to be used during SSL negotiation. |
Certificate |
getSSLServerCert()
The server certificate for the last established connection. |
int |
getSSLStartMode()
Determines how the bean starts the SSL negotiation. |
int |
getTimeout()
A timeout for the bean. |
void |
interrupt()
Interrupt the current method. |
boolean |
isAcceptData()
Enables or disables data reception from the server. |
boolean |
isConnected()
Shows whether the bean is connected. |
boolean |
isDeleteOldRDN()
Controls whether the old RDN (Relative Distinguished Name) should be deleted. |
boolean |
isIdle()
The current status of the component. |
boolean |
isSearchReturnValues()
Controls whether the search operation returns values of attributes, or only types. |
void |
modify()
Performs an LDAP 'modify' operation on the entry specified by DN . |
void |
modifyRDN(java.lang.String newRDN)
Performs an LDAP 'modify RDN' operation an entry specified by DN . |
void |
moveToDN(java.lang.String newSuperior)
Performs an LDAP 'modify' operation on the entry specified by DN by changing its superior. |
void |
removeLdapsEventListener(LdapsEventListener l)
|
void |
search(java.lang.String searchFilter)
Searches the directory server using the base object specified in DN and the search filter SearchFilter . |
void |
setAcceptData(boolean acceptData)
Enables or disables data reception from the server. |
void |
setAuthMechanism(int authMechanism)
The authentication mechanism to be used when connecting to the LDAP server. |
void |
setConnected(boolean connected)
Shows whether the bean is connected. |
void |
setDeleteOldRDN(boolean deleteOldRDN)
Controls whether the old RDN (Relative Distinguished Name) should be deleted. |
void |
setDN(java.lang.String DN)
The Distinguished Name used as the base for LDAP operations. |
void |
setFirewall(Firewall firewall)
A set of properties related to firewall access. |
void |
setLDAPVersion(int LDAPVersion)
The version of LDAP used. |
void |
setLocalHost(java.lang.String localHost)
The name of the local host or user-assigned IP interface through which connections are initiated or accepted. |
void |
setMessageId(int messageId)
The message identifier for the next LDAP request. |
void |
setPageSize(int pageSize)
The maximum number of results per page for the Search method. |
void |
setPassword(java.lang.String password)
The password used to authenticate to the LDAP server. |
void |
setSearchDerefAliases(int searchDerefAliases)
Controls alias dereferencing during searching. |
void |
setSearchReturnValues(boolean searchReturnValues)
Controls whether the search operation returns values of attributes, or only types. |
void |
setSearchScope(int searchScope)
Controls the scope of LDAP search operations. |
void |
setSearchSizeLimit(int searchSizeLimit)
Maximum number of entries that can be returned by the next search operation. |
void |
setSearchTimeLimit(int searchTimeLimit)
A time limit for the next search operation (in seconds). |
void |
setServerName(java.lang.String serverName)
The name or address of the LDAP server. |
void |
setServerPort(int serverPort)
The server port for the LDAP connection (default is 636). |
void |
setSortAttributes(java.lang.String sortAttributes)
A string of attribute names to sort on with optional relative matching rules. |
void |
setSSLAcceptServerCert(Certificate SSLAcceptServerCert)
Instructs the bean to unconditionally accept the server certificate that matches the supplied certificate. |
void |
setSSLCert(Certificate SSLCert)
The certificate to be used during SSL negotiation. |
void |
setSSLStartMode(int SSLStartMode)
Determines how the bean starts the SSL negotiation. |
void |
setTimeout(int timeout)
A timeout for the bean. |
void |
unbind()
Unbinds from the directory server. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int amSimple
public static final int amDigestMD5
public static final int amNegotiate
public static final int amKerberos
public static final int sdaNever
public static final int sdaInSearching
public static final int sdaFindingBaseObject
public static final int sdaAlways
public static final int ssBaseObject
public static final int ssSingleLevel
public static final int ssWholeSubtree
public static final int sslAutomatic
public static final int sslImplicit
public static final int sslExplicit
public static final int sslNone
| Constructor Detail |
|---|
public Ldaps()
public Ldaps(java.lang.String runtimeLicense)
| Method Detail |
|---|
public boolean isAcceptData()
This property enables or disables data reception from the server. Setting the property to False, temporarily disables data reception. Setting the property to True, re-enables data reception.
public void setAcceptData(boolean acceptData)
throws IPWorksSSLException
This property enables or disables data reception from the server. Setting the property to False, temporarily disables data reception. Setting the property to True, re-enables data reception.
IPWorksSSLExceptionpublic LDAPAttributeList getAttributes()
This property contains a collection of all of the attributes
for the current entry. Each attribute's details are found in
the fields of the ldapattribute type.
After a Search , this property will be populated with the attributes of each search results and can be read
within the SearchResult event (one event for each resulting DN).
During an LDAP Modify operation, this property
describes the modifications that are to be made
to the attributes. You may specify the attribute,
the new value, and the operation to be executed
by the server in this property.
This collection is indexed from 0 to size - 1.
public int getAuthMechanism()
By default, AuthMechanism is amSimple (0), and default plaintext authentication is used to login to the server.
If AuthMechanism is set to amDigestMD5 (1), the more secure DIGEST-MD5 authentication is used instead.
If AuthMechanism is set to amNegotiate (2) NTLM/Negotiate authentication will be used.
If AuthMechanism is set to amKerberos (6) Kerberos/Negotiate authentication will be used.
public void setAuthMechanism(int authMechanism)
throws IPWorksSSLException
By default, AuthMechanism is amSimple (0), and default plaintext authentication is used to login to the server.
If AuthMechanism is set to amDigestMD5 (1), the more secure DIGEST-MD5 authentication is used instead.
If AuthMechanism is set to amNegotiate (2) NTLM/Negotiate authentication will be used.
If AuthMechanism is set to amKerberos (6) Kerberos/Negotiate authentication will be used.
IPWorksSSLExceptionpublic boolean isConnected()
This property is used to determine whether or not the bean is connected to the remote host.
public void setConnected(boolean connected)
throws IPWorksSSLException
This property is used to determine whether or not the bean is connected to the remote host.
IPWorksSSLExceptionpublic boolean isDeleteOldRDN()
This property controls whether the old Relative Distinguished Name (RDN) should be deleted. It is used when ModifyRDN is called. The default value is True, which instructs
the server to delete the old RDN.
public void setDeleteOldRDN(boolean deleteOldRDN)
throws IPWorksSSLException
This property controls whether the old Relative Distinguished Name (RDN) should be deleted. It is used when ModifyRDN is called. The default value is True, which instructs
the server to delete the old RDN.
IPWorksSSLExceptionpublic java.lang.String getDN()
Also the base object during LDAP searches.
The Distinguished Name is provided in string format as specified by RFC 1779. Example (Setting DN)
LDAPControl.DN = "uid=TThompson,ou=Employees,dc=server"
LDAPControl.DN = "Domain\Username"
public void setDN(java.lang.String DN)
throws IPWorksSSLException
Also the base object during LDAP searches.
The Distinguished Name is provided in string format as specified by RFC 1779. Example (Setting DN)
LDAPControl.DN = "uid=TThompson,ou=Employees,dc=server"
LDAPControl.DN = "Domain\Username"
IPWorksSSLExceptionpublic Firewall getFirewall()
This is a Firewall type property which
contains fields describing the firewall
through which the bean will attempt to connect.
public void setFirewall(Firewall firewall)
throws IPWorksSSLException
This is a Firewall type property which
contains fields describing the firewall
through which the bean will attempt to connect.
IPWorksSSLExceptionpublic boolean isIdle()
Idle will be False if the component is currently busy (communicating
and/or waiting for an answer), and True at all other times.
public int getLDAPVersion()
This property contains the version of LDAP used. The default value is 2 (for LDAPv2).
public void setLDAPVersion(int LDAPVersion)
throws IPWorksSSLException
This property contains the version of LDAP used. The default value is 2 (for LDAPv2).
IPWorksSSLExceptionpublic java.lang.String getLocalHost()
The LocalHost property contains the name of the local host
as obtained by the gethostname() system call, or if the
user has assigned an IP address, the value of that address.
In multi-homed hosts (machines with more than one IP interface) setting LocalHost to the value of an interface will make the bean initiate connections (or accept in the case of server beans) only through that interface.
If the bean is connected, the LocalHost property shows
the IP address of the interface through which the connection
is made in internet dotted format (aaa.bbb.ccc.ddd). In most
cases, this is the address of the local host, except for multi-homed
hosts (machines with more than one IP interface).
NOTE: LocalHost is not persistent. You must always set it in
code, and never in the property window.
public void setLocalHost(java.lang.String localHost)
throws IPWorksSSLException
The LocalHost property contains the name of the local host
as obtained by the gethostname() system call, or if the
user has assigned an IP address, the value of that address.
In multi-homed hosts (machines with more than one IP interface) setting LocalHost to the value of an interface will make the bean initiate connections (or accept in the case of server beans) only through that interface.
If the bean is connected, the LocalHost property shows
the IP address of the interface through which the connection
is made in internet dotted format (aaa.bbb.ccc.ddd). In most
cases, this is the address of the local host, except for multi-homed
hosts (machines with more than one IP interface).
NOTE: LocalHost is not persistent. You must always set it in
code, and never in the property window.
IPWorksSSLExceptionpublic int getMessageId()
This property contains the message identifier for the next LDAP request. If a custom value is needed, this property must be set before calling any other methods. The bean increments this property automatically after each request.
public void setMessageId(int messageId)
throws IPWorksSSLException
This property contains the message identifier for the next LDAP request. If a custom value is needed, this property must be set before calling any other methods. The bean increments this property automatically after each request.
IPWorksSSLExceptionpublic int getPageSize()
Search method.
This property contains the maximum number of results per page for the Search method. The default value is 0 (no paging). If set to a value greater than zero, results
will be paged, i.e. returned in blocks of maximum PageSize results.
For each page sent by the server, a SearchPage event will fire. you may
decide to cancel or continue displaying results from within this event.
Note: LDAP paging functionality is described by LDAP extension RFCs and may or may not be implemented by the LDAP server being accessed.
public void setPageSize(int pageSize)
throws IPWorksSSLException
Search method.
This property contains the maximum number of results per page for the Search method. The default value is 0 (no paging). If set to a value greater than zero, results
will be paged, i.e. returned in blocks of maximum PageSize results.
For each page sent by the server, a SearchPage event will fire. you may
decide to cancel or continue displaying results from within this event.
Note: LDAP paging functionality is described by LDAP extension RFCs and may or may not be implemented by the LDAP server being accessed.
IPWorksSSLExceptionpublic java.lang.String getPassword()
This property contains the password used to authenticate to the LDAP server. Leave this value empty if no password is required.
public void setPassword(java.lang.String password)
throws IPWorksSSLException
This property contains the password used to authenticate to the LDAP server. Leave this value empty if no password is required.
IPWorksSSLExceptionpublic LDAPReferenceList getReferences()
This property contains a collection of references returned from the server. References will be SearchResult references if inside
a SearchResult or SearchResultReference event
in which case they represent URLs to contact to continue
the search. References will be regular Result references
if inside the Result event or SearchComplete event in which case they represent the URLs to contact
in order to complete the requested operation.
This collection is indexed from 0 to size - 1.
public int getResultCode()
This property contains the result code returned in the last server response. This is identical to the corresponding parameter provided by the last Result , SearchResult , or SearchComplete event.
Possible result codes are:
All the result codes with the exception of success, compareFalse and compareTrue are to be treated as meaning the operation could not be completed in its entirety. Result codes from 16 to 21 indicate an AttributeProblem, codes 32, 33, 34 and 36 indicate a NameProblem, codes 48, 49 and 50 indicate a SecurityProblem, codes 51 to 54 indicate a ServiceProblem, and codes 64 to 69 and 71 indicate an UpdateProblem.
public java.lang.String getResultDescription()
This property contains the descriptive text returned in the last server response (if any). This is identical to the corresponding parameter provided by the last Result , SearchResult , or SearchComplete event.
public java.lang.String getResultDN()
This property contains the Distinguished Name returned in the last server response (if any).
This is identical to the corresponding parameter provided by the last Result , or SearchComplete event.
public int getSearchDerefAliases()
This property controls the alias dereferencing during searching. Possible values are:
Default is to never dereference aliases.
public void setSearchDerefAliases(int searchDerefAliases)
throws IPWorksSSLException
This property controls the alias dereferencing during searching. Possible values are:
Default is to never dereference aliases.
IPWorksSSLExceptionpublic boolean isSearchReturnValues()
This property controls whether the search operation returns values of attributes, or only types. If only attributes are needed, disabling returning of values will enhance performance.
public void setSearchReturnValues(boolean searchReturnValues)
throws IPWorksSSLException
This property controls whether the search operation returns values of attributes, or only types. If only attributes are needed, disabling returning of values will enhance performance.
IPWorksSSLExceptionpublic int getSearchScope()
This property controls the scope of LDAP search operations. Possible values are:
Default is to search the whole subtree.
public void setSearchScope(int searchScope)
throws IPWorksSSLException
This property controls the scope of LDAP search operations. Possible values are:
Default is to search the whole subtree.
IPWorksSSLExceptionpublic int getSearchSizeLimit()
This property contains the maximum number of entries that can be returned by the next search operation. This limit is provided as a hint to the directory server. A value of 0 means that no size limits are in effect for the search.
public void setSearchSizeLimit(int searchSizeLimit)
throws IPWorksSSLException
This property contains the maximum number of entries that can be returned by the next search operation. This limit is provided as a hint to the directory server. A value of 0 means that no size limits are in effect for the search.
IPWorksSSLExceptionpublic int getSearchTimeLimit()
This property contains a time limit for the next search operation (in seconds). This limit is provided as a hint to the directory server. A value of 0 means that no time limits are in effect for the search.
public void setSearchTimeLimit(int searchTimeLimit)
throws IPWorksSSLException
This property contains a time limit for the next search operation (in seconds). This limit is provided as a hint to the directory server. A value of 0 means that no time limits are in effect for the search.
IPWorksSSLExceptionpublic java.lang.String getServerName()
This property specifies the IP address (IP number in dotted internet format) or Domain Name of the directory server. It is set before a connection is attempted and cannot be changed once a connection is in progress.
If this property is set to a Domain Name, a DNS request is initiated and upon successful termination of the request, this property is set to the corresponding address. If the search is not successful, an error is returned.
public void setServerName(java.lang.String serverName)
throws IPWorksSSLException
This property specifies the IP address (IP number in dotted internet format) or Domain Name of the directory server. It is set before a connection is attempted and cannot be changed once a connection is in progress.
If this property is set to a Domain Name, a DNS request is initiated and upon successful termination of the request, this property is set to the corresponding address. If the search is not successful, an error is returned.
IPWorksSSLExceptionpublic int getServerPort()
This property contains the server port for the LDAP connection (default is 636). A valid port number (a value between 1 and 65535) is required for the connection to take place. The property must be set before a connection is attempted and cannot be changed once a connection is established. Any attempt to change this property while connected will fail with an error.
For explicit SSL, use port 389 instead (please refer to the SSLStartMode property for more information).
public void setServerPort(int serverPort)
throws IPWorksSSLException
This property contains the server port for the LDAP connection (default is 636). A valid port number (a value between 1 and 65535) is required for the connection to take place. The property must be set before a connection is attempted and cannot be changed once a connection is established. Any attempt to change this property while connected will fail with an error.
For explicit SSL, use port 389 instead (please refer to the SSLStartMode property for more information).
IPWorksSSLExceptionpublic java.lang.String getSortAttributes()
This property contains a string of attribute names to sort on with optional relative matching rules. When set prior to a Search , entries returned by the server will be sorted according to SortAttributes .
The format consists of one or more attribute names separated by spaces. Each attribute
may be followed by an optional matching rule.
If matching rules are defined, they should be separated from the attribute names with a "/".
Normally the values are returned in ascending order. If descending (reverse) order of sorting is desired, the attribute type must be preceded with a "-".
Examples:
LDAPControl.SortAttributes = "loginTime"
LDAPControl.SortAttributes = "name/caseIgnoreSubstringsMatch age/numericStringSubstringsMatch"
LDAPControl.SortAttributes = "cn age/1.3.6.1.4.1.1466.115.121.1.27"
LDAPControl.SortAttributes = "-cn age/1.3.6.1.4.1.1466.115.121.1.27" Matching Rules for Equality Filters
public void setSortAttributes(java.lang.String sortAttributes)
throws IPWorksSSLException
This property contains a string of attribute names to sort on with optional relative matching rules. When set prior to a Search , entries returned by the server will be sorted according to SortAttributes .
The format consists of one or more attribute names separated by spaces. Each attribute
may be followed by an optional matching rule.
If matching rules are defined, they should be separated from the attribute names with a "/".
Normally the values are returned in ascending order. If descending (reverse) order of sorting is desired, the attribute type must be preceded with a "-".
Examples:
LDAPControl.SortAttributes = "loginTime"
LDAPControl.SortAttributes = "name/caseIgnoreSubstringsMatch age/numericStringSubstringsMatch"
LDAPControl.SortAttributes = "cn age/1.3.6.1.4.1.1466.115.121.1.27"
LDAPControl.SortAttributes = "-cn age/1.3.6.1.4.1.1466.115.121.1.27" Matching Rules for Equality Filters
IPWorksSSLExceptionpublic Certificate getSSLAcceptServerCert()
If it finds any issues with the certificate presented by the server, the bean will normally terminate the connection with an error.
You may override this behavior by supplying a value for SSLAcceptServerCert .
If the certificate supplied in SSLAcceptServerCert is the same as the
certificate presented by the server, then the server
certificate is accepted unconditionally, and the connection will continue
normally.
Please note that this functionality is provided only for cases where you otherwise know that you are communicating with the right server. If used improperly, this property may create a security breach. Use it at your own risk.
public void setSSLAcceptServerCert(Certificate SSLAcceptServerCert)
throws IPWorksSSLException
If it finds any issues with the certificate presented by the server, the bean will normally terminate the connection with an error.
You may override this behavior by supplying a value for SSLAcceptServerCert .
If the certificate supplied in SSLAcceptServerCert is the same as the
certificate presented by the server, then the server
certificate is accepted unconditionally, and the connection will continue
normally.
Please note that this functionality is provided only for cases where you otherwise know that you are communicating with the right server. If used improperly, this property may create a security breach. Use it at your own risk.
IPWorksSSLExceptionpublic Certificate getSSLCert()
The digital certificate that the bean will use
during SSL negotiation. Set this property to a valid
certificate before starting SSL negotiation. To set
a certificate, you may set the Encoded field to
the encoded certificate. To select a certificate, use
the store and subject fields.
public void setSSLCert(Certificate SSLCert)
throws IPWorksSSLException
The digital certificate that the bean will use
during SSL negotiation. Set this property to a valid
certificate before starting SSL negotiation. To set
a certificate, you may set the Encoded field to
the encoded certificate. To select a certificate, use
the store and subject fields.
IPWorksSSLExceptionpublic Certificate getSSLServerCert()
SSLServerCert contains the server certificate for the
last established connection.
SSLServerCert is reset every time a new connection is attempted.
public int getSSLStartMode()
The SSLStartMode property may have one of the following values:
SSLStartMode is set to sslExplicit . In all other cases, SSL negotiation will be implicit
( sslImplicit ).
public void setSSLStartMode(int SSLStartMode)
throws IPWorksSSLException
The SSLStartMode property may have one of the following values:
SSLStartMode is set to sslExplicit . In all other cases, SSL negotiation will be implicit
( sslImplicit ).
IPWorksSSLExceptionpublic int getTimeout()
If the Timeout property is set to 0, all operations return
immediately, potentially failing with an error if they can't be
completed immediately.
If Timeout is set to a positive value, the bean will
wait for the operation to complete before returning control.
The bean will use DoEvents to enter an efficient wait loop
during any potential waiting period, making sure that all system events
are processed immediately as they arrive. This ensures that the host
application does not "freeze" and remains responsive.
If Timeout expires, and the operation is not yet complete,
the bean throws an exception.
Please note that by default, all timeouts are inactivity timeouts ,
i.e. the timeout period is extended by Timeout seconds when
any amount of data is successfully sent or received.
Optionally, the behavior of the bean may be changed to absolute timeouts , i.e. the bean will wait for a maximum
of Timeout seconds since the beginning of the operation, without
extending the timeout period during communications.
This behavior is controlled by the ipworksssl.Ldaps#config configuration setting.
The default value for the {@link ipworksssl.Ldaps#getTimeout Timeout} property is 60 seconds.
public void setTimeout(int timeout)
throws IPWorksSSLException
If the Timeout property is set to 0, all operations return
immediately, potentially failing with an error if they can't be
completed immediately.
If Timeout is set to a positive value, the bean will
wait for the operation to complete before returning control.
The bean will use DoEvents to enter an efficient wait loop
during any potential waiting period, making sure that all system events
are processed immediately as they arrive. This ensures that the host
application does not "freeze" and remains responsive.
If Timeout expires, and the operation is not yet complete,
the bean throws an exception.
Please note that by default, all timeouts are inactivity timeouts ,
i.e. the timeout period is extended by Timeout seconds when
any amount of data is successfully sent or received.
Optionally, the behavior of the bean may be changed to absolute timeouts , i.e. the bean will wait for a maximum
of Timeout seconds since the beginning of the operation, without
extending the timeout period during communications.
This behavior is controlled by the ipworksssl.Ldaps#config configuration setting.
The default value for the {@link ipworksssl.Ldaps#getTimeout Timeout} property is 60 seconds.
IPWorksSSLException
public void abandon(int messageId)
throws IPWorksSSLException
This method asks the server to abandon the request specified by MessageId .
The result of the operation is returned via the Result event.
IPWorksSSLException
public void add()
throws IPWorksSSLException
DN to the directory server using the type and value attributes defined in the Attributes collection
.
This method adds the entry specified by DN to the directory. All Entries are required to have an objectClass attribute.
In order to add a new entry, first Bind with credentials that will allow you to perform the new addition. To add attributes
instead of entries, use the Modify method instead.
When specifying multi-valued attributes, specify the attribute type only in the first
occurrence of that attribute type in the Attributes collection
. Additional occurrences of the same attribute type should specify an
attribute type of empty string.
The result of the operation is returned via the Result event.
Example (Add a New Entry, including the multi-valued objectClass attribute)
LDAPControl.DN = "uid=NewUser,ou=Employees,dc=server"
LDAPControl.Attributes.Add(new LDAPAttribute("objectClass", "top"))
LDAPControl.Attributes.Add(new LDAPAttribute("", "person"))
LDAPControl.Attributes.Add(new LDAPAttribute("", "organizationalPerson"))
LDAPControl.Attributes.Add(new LDAPAttribute("", "inetorgperson"))
LDAPControl.Attributes.Add(new LDAPAttribute("sn", "UserName"))
LDAPControl.Attributes.Add(new LDAPAttribute("cn", "New S. UserName"))
LDAPControl.Attributes.Add(new LDAPAttribute("uid", "NewUser"))
LDAPControl.Add()
IPWorksSSLException
public java.lang.String attr(java.lang.String attrType)
throws IPWorksSSLException
This method returns the value of the specified LDAP attribute. If the attribute does not exist, an empty string is returned.
Please refer to the Attributes collection
for more information.
IPWorksSSLException
public void bind()
throws IPWorksSSLException
This method connects and binds to the directory server. If the Password property has a value, it is used for authentication. If not, the Bind is performed
anonymously. Binding is often required on some directory servers like Active Directory.
The result of the operation is returned via the Result event.
Example (Binding)
LDAPControl.DN = "uid=TThompson,ou=Employees,dc=server"
LDAPControl.Password = "mypassword"
LDAPControl.Bind()
LDAPControl.DN = "Domain/Username"
LDAPControl.Password = "mypassword"
LDAPControl.Bind()
IPWorksSSLException
public void compare()
throws IPWorksSSLException
DN .
This method compares attributes types and values specified via the Attributes collection
,
with the values in the directory for the entry specified by DN .
The result of the operation is returned via the Result event.
IPWorksSSLException
public java.lang.String config(java.lang.String configurationString)
throws IPWorksSSLException
{@link ipworksssl.Ldaps#config Config} is a generic method available in every bean. It is used to set and retrieve {@link ipworksssl.Ldaps#config configuration settingsfor the bean.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the bean, access to these internal properties is provided through the {@link ipworksssl.Ldaps#config Config} method.
To set a configuration setting named PROPERTY , you must call Config("PROPERTY=VALUE") , where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).
To read (query) the value of a {@link ipworksssl.Ldaps#config configuration setting, you must call Config("PROPERTY") . The value will be returned as a string.
The bean accepts one or more of the following configuration settings . Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the bean, access to these internal properties is provided through the {@link ipworksssl.Ldaps#config Config} method.
You may still add to the {@link ipworksssl.Ldaps#getAttributes Attributes} collection when this config is set. This config only specifies a max for returned attributes.
NOTE: This functionality is only available in Java and .NET.
NOTE: This is the same as Host . This setting is provided for use by beans that do not directly expose Firewall properties.
{@link ipworksssl.Ldaps#getRemotePort RemotePort} is the port in which the firewall will listen to. If set to 0, the firewall will select a random port. The binding (address and port) is provided through the {@link ipworksssl.LdapsConnectionStatusEvent ConnectionStatus} event.
The connection to the firewall is made by calling the {@link ipworksssl.Ldaps#connect Connect} method.
In the second scenario, {@link ipworksssl.Ldaps#config is a positive value, the system will attempt to send pending data until the specified {@link ipworksssl.Ldaps#config is reached. If this attempt fails, then the system will reset the connection.
The default behavior (which is also the default mode for stream sockets) might result in a long delay in closing the connection. Although the bean returns control immediately, the system could hold system resources until all pending data is sent (even after your application closes).
Setting this property to False forces an immediate disconnection. If you know that the other side has received all the data you sent (by a client acknowledgment, for example), setting this property to False might be the appropriate course of action.
If the bean is connected, the {@link ipworksssl.Ldaps#getLocalHost LocalHost} setting shows the IP address of the interface through which the connection is made in internet dotted format (aaa.bbb.ccc.ddd). In most cases, this is the address of the local host, except for multi-homed hosts (machines with more than one IP interface).
{@link ipworksssl.Ldaps#getLocalPort LocalPort} cannot be changed once a connection is made. Any attempt to set this when a connection is active will generate an error.
This; setting is useful when trying to connect to services that require a trusted port in the client side. An example is the remote shell (rsh) service in UNIX systems.
If no {@link ipworksssl.Ldaps#getEOL EOL} is found, and {@link ipworksssl.Ldaps#config bytes are accumulated in the buffer, the {@link ipworksssl.LdapsDataInEvent DataIn} event is fired with the EOL parameter set to False, and the buffer is reset.
The minimum value for {@link ipworksssl.Ldaps#config is 256 bytes. The default value is 2048 bytes. The maximum value is 65536 bytes.
Use this setting with caution. Requesting a lower cipher strength than necessary could potentially cause serious security vulnerabilities in your application.
When the provider is OpenSSL, SSLCipherStrength is currently not supported. This functionality is instead made available through the {@link ipworksssl.Ldaps#config config setting.
When the provider is OpenSSL, SSLCipherStrength is currently not supported. This functionality is instead made available through the {@link ipworksssl.Ldaps#config config setting.
TLS 1.1 and TLS1.2 support are only available starting with Windows 7.
The special value "*" (default) picks the default SSL provider defined in the system.
Note: On Windows systems, the default SSL Provider is "Microsoft Unified Security Protocol Provider" and cannot be changed.
The special value "*" means that the component will pick all of the supported cipher suites. If SSLEnabledCipherSuites is set to any other value, only the specified cipher suites will be considered.
Multiple cipher suites are separated by semicolons.
Example values:
obj.config("SSLEnabledCipherSuites=*");
obj.config("SSLEnabledCipherSuites=SSL_RSA_WITH_RC4_128_SHA");
obj.config("SSLEnabledCipherSuites=SSL_RSA_WITH_RC4_128_SHA; SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA"); Possible values include:
SSLEnabledCipherSuites is used together with SSLCipherStrength .
Note: This configuration setting is available only in .NET and Java.
obj.Config("SSLEnabledProtocols=3072"); // TLS1.2 (supports SHA_256)
obj.Config("SSLAlgorithmList=CALG_SHA_256;CALG_MD5"); Possible values include:
This option is only valid in Windows.
IPWorksSSLException
public void delete()
throws IPWorksSSLException
DN from the directory server.
This method deletes the entry specified by DN from the directory.
The result of the operation is returned via the Result event.
IPWorksSSLException
public void doEvents()
throws IPWorksSSLException
When DoEvents is called, the bean processes any
available events. If no events are available, it waits for a
preset period of time, and then returns.
IPWorksSSLException
public void extendedRequest(java.lang.String requestName,
byte[] requestValue)
throws IPWorksSSLException
This method performs an LDAP V3 Extended Operation. RequestName must contain the OID of the operation, and RequestValue may contain an optional value.
IPWorksSSLException
public void interrupt()
throws IPWorksSSLException
If there is no method in progress, Interrupt simply returns, doing nothing.
IPWorksSSLException
public void modify()
throws IPWorksSSLException
DN .
This method performs an LDAP 'modify' operation on the entry specified by DN . The attribute(s) to
modify should be set via the Attributes collection
. When specifying multi-valued attributes, specify the attribute type only in the first
occurrence of that attribute type in the Attributes collection
. Additional occurrences of the same attribute type should specify an
attribute type of empty string.
The modification can be a replacement, an addition, or a deletion, depending on the ModOp field of the attribute;.
The result of the operation is returned via the Result event.
Example (Modify an Entry - Replace an Attribute Value)
LDAPControl.DN = "uid=TThompson,ou=Employees,dc=server"
LDAPControl.Attributes.Add(New LDAPAttribute("url", "www.url1.net", LDAPAttributeModOps.amoReplace))
LDAPControl.Attributes.Add(New LDAPAttribute("", "www.url2.net", LDAPAttributeModOps.amoReplace))
LDAPControl.Modify()
IPWorksSSLException
public void modifyRDN(java.lang.String newRDN)
throws IPWorksSSLException
DN .
This method performs an LDAP 'modify RDN' operation on the entry specified by DN .
NewRDN is the new RDN for the entry specified by DN
The result of the operation is returned via the Result event.
IPWorksSSLException
public void moveToDN(java.lang.String newSuperior)
throws IPWorksSSLException
DN by changing its superior.
This method performs an LDAP 'modify' operation on the entry specified by DN by changing its superior.
None of the entry's attributes will change. DeleteOldRDN property will
be set to true to delete the old entry.
The result of the operation is returned via the Result event.
IPWorksSSLException
public void search(java.lang.String searchFilter)
throws IPWorksSSLException
DN and the search filter SearchFilter .
This method searches the directory server using the base object specified
in the DN and the search filter specified in the SearchFilter parameter. Additional search parameters are specified through the SearchScope , SearchDerefAliases , SearchSizeLimit , SearchTimeLimit ,
and SearchReturnValues properties.
If Attributes are specified before starting a search, the server will only return results that contain a value for the specified attributes.
Results are returned through
zero or more SearchResult events, after which a SearchComplete event is fired.
Example (Searching for a User)
LDAPControl.DN = "ou=Employees,dc=server"
LDAPControl.Search("uid=TThompson")
A DSE Search (Directory Specific Entries) will search for attributes of the server itself. Example (DSE Search)
LDAPControl.DN = ""
LDAPControl.SearchScope = 0
LDAPControl.Search("objectClass=*")
SearchFilter is a string representation of the LDAP search filter used for the search.
The format of the search filter is specified by RFC 1558 and is identical to the format used by most LDAP applications.
The following are examples of search filters, as provided in the RFC:
(cn=Babs Jensen)
(!(cn=Tim Howes))
(&(objectClass=Person)(|(sn=Jensen)(cn=Babs J*)))
(o=univ*of*mich*)
The complete specification is given by the following BNF:
<filter> ::= "(" <filtercomp> ")"
<filtercomp> ::= <and> | <or> | <not> | <item>
<and> ::= "&" <filterlist>
<or> ::= "|" <filterlist>
<not> ::= "!" <filter>
<filterlist> ::= <filter> | <filter> <filterlist>
<item> ::= <simple> | <present> | <substring>
<simple> ::= <attr> <filtertype> <value>
<filtertype> ::= <equal> | <approx> | <greater> | <less>
<equal> ::= "="
<approx> ::= "~="
<greater> ::= ">="
<less> ::= "<="
<present> ::= <attr> "=*"
<substring> ::= <attr> "=" <initial> <any> <final>
<initial> ::= NULL | <value>
<any> ::= "*" <starval>
<starval> ::= NULL | <value> "*" <starval>
<final> ::= NULL | <value>
<attr> is a string representing an attribute type as defined in RFC 1777. <value> is a string representing an attribute value, or part of one, and has the form defined in RFC 1779. If a <value> must contain one of the characters '*' or '(' or ')', these should be escaped by preceding them with the backslash '\' character.
IPWorksSSLException
public void unbind()
throws IPWorksSSLException
This method unbinds from the directory server and breaks the connection.
IPWorksSSLException
public void addLdapsEventListener(LdapsEventListener l)
throws java.util.TooManyListenersException
java.util.TooManyListenersExceptionpublic void removeLdapsEventListener(LdapsEventListener l)
|
IP*Works! SSL V9 | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||