The Data & Services section of the Administrator is the interface for ColdFusion, data sources, and Verity search and indexing features. The following table describes some common tasks that you can perform in the Data & Services section of the Administrator:
Task |
Description |
---|---|
Create and manage JDBC data sources |
The Data Sources page lets you establish, edit, and delete JDBC data source connections for ColdFusion. For more information, see Data Source Management. |
Create and maintain Verity collections |
The Verity Collections page lets you create and delete Verity collections and perform maintenance operations on collections that you create. For more information, see Verity Collections page. |
Define mappings for web services |
The Web Services page lets you produce and consume remote application functionality over the Internet. For more information, see Web Services page. |
Specify settings to integrate with AdobeĀ® Flex™ applications |
The Flex Integration page lets you specify which Flex integration features to enable and which IP addresses can perform data service operations. For more information, see Flex Integration page. |
The Data & Services section contains the following pages:
The Data Sources page lets you create, edit, and delete JDBC data sources. Before you can use a database in a ColdFusion application, you must register the data source in the ColdFusion Administrator. For more information, see Data Source Management.
ColdFusion includes Verity, which provides indexing and searching technology to create, populate, and manage collections of indexed data that are optimized for fast and efficient site searches.
A collection is a logical group of documents and metadata about the documents. The metadata includes word indexes, an internal documents table of document field information, and logical pointers to the document files.
For more information about building search interfaces, see Building a Search Interface in the ColdFusion Developer's Guide.
ColdFusion lets you manage your collections from the Administrator. You can index, optimize, purge, or delete Verity collections that are connected to ColdFusion. You use the icons in the Actions column to perform the following actions:
Action |
Description |
---|---|
Index |
Analyzes the files in a collection and assembles metadata and pointers to the files. |
Optimize |
Reclaims space left by deleted and changed files by consolidating collection indexes for faster searching. You should optimize collections regularly. |
Purge |
Deletes all documents in a collection, but not the collection itself. Leaves the collection directory structure intact. |
Delete |
Deletes a collection. |
Verity Search Server must be running. If this page is unable to retrieve collections, ensure that Verity Search Server is running. For more information, see Collections and the ColdFusion Verity architecture.
You can install Verity on a different host computer from the computer that ColdFusion is running on. If you do so, you can configure the host that ColdFusion will use when it performs search operations. If you have purchased the Verity product, you may need to use advanced settings to configure the aliases and ports of the services that ColdFusion uses. You should not need to change these values if you are running with the ColdFusion installed version of Verity.
You can use web services to produce and consume remote application functionality over the Internet. The ColdFusion Administrator lets you register web services so that you do not have to specify the entire Web Services Description Language (WSDL) URL when you reference the web service. The first time you reference a web service, ColdFusion automatically registers it in the Administrator.
When you register a web service, you can shorten your code and change a web service's URL without editing your code. For more information, see Using Web Services in the ColdFusion Developer's Guide.
Use this page to specify which Flex integration features to enable and which IP addresses can perform data-service operations. If you enable Adobe LiveCycle Data Services ES support, but do not specify any IP addresses, only processes on the local computer can connect to the LiveCycle Data Services ES server in ColdFusion.
Option |
Description |
---|---|
Enable Flash Remoting Support |
Specifies whether to enable Flash clients to connect to this ColdFusion server and invoke methods in ColdFusion components (CFCs). |
Enable Remote LiveCycle Data Management Access |
Specifies whether to enable a LiveCycle Data Services ES server to connect to this ColdFusion server and invoke methods in CFCs to fill, sync, get, or count records in a result set used in a Flex application. Enable this option only if you are running LiveCycle Data Services ES remotely. |
Server Identity |
Specifies the ColdFusion server on which you want to enable Flex Data Management Support. |
Enable RMI Over SSL For Data Management |
To encrypt communication between ColdFusion and Flex, enable Secure Sockets Layer (SSL). |
Select IP Addresses Where LiveCycle Data Services Are Running |
Specifies which LiveCycle Data Services ES servers can connect to the LiveCycle Data Services ES support in ColdFusion. If you do not specify a list of allowed IP addresses, only processes on the local computer can connect to the LiveCycle Data Services ES support in ColdFusion |
To use SSL, create a keystore file. The keystore is a self-signed certificate. (You do not need a certificate signed by a Certificate Authority, although if you do use one, you do not need to configure Flex as indicated in the following steps.) The information in the keystore is encrypted and can be accessed only with the password that you specify. To create the keystore, use the Java keytool utility, which is included in the Java Runtime Environment (JRE).
keytool -genkey -v -alias FlexAssembler -dname "cn=FlexAssembler" -keystore cf.keystore -keypass mypassword -storepass mypassword
The following table describes the parameters of the keytool utility:
Parameter |
Description |
---|---|
-alias |
The name of the keystore entry. You can use any name for this, as long as you are consistent when referring to it. |
-dname |
The Distinguished Name, which contains the Common Name (cn) of the server. |
-keystore |
The location of the keystore file. |
-keypass |
The password for your private key. |
-storepass |
The password for the keystore. The encrypted storepass is stored in ColdFusion configuration files. |
-rfc |
Generates the certificate in the printable encoding format. |
-file |
The name of the keystore file. |
-v |
Generates detailed certificate information |
Place the certificate you created in the file that the JVM uses to determine what certificates to trust. The file in which you put the certificate, (usually named cacerts), is located in the JRE, in the lib/security folder.
keytool -export -v -alias FlexAssembler -keystore cf.keystore -rfc -file cf.cer
keytool -import -v -alias FlexAssembler -file cf.cer -keystore C:\fds2\UninstallerData\jre\lib\security\cacerts
The preceding example specifies the location of the keystore for LiveCycle Data Services ES with integrated JRun, installed by using the default settings. If you are using a different server, specify the location of the cacerts file for the JRE that you are using. For example, if you are using JBoss, specify the keystore location as $JAVA_HOME/jre/lib/security/cacerts.
Enable SSL in the ColdFusion Administrator
If you specify an invalid keystore file or password, ColdFusion does not enable SSL, and disables LiveCycle Data Management Support.