Whatever message this page gives is out now! Go check it out!
| Setting | Description |
Archive Type | Select EAR or WAR. |
Context Root (EAR only) | Each JEE web application running in a server is rooted at a unique base URL, called a context root (or context path). The JEE application server uses the initial portion of the URL (that is, the portion immediately following http://hostname) to determine which web application services an incoming request. For example, if you are running ColdFusion with a context root of cfmx , you display the Administrator using the URL Most JEE application servers allow one application in each server instance to use a forward slash |
Serial Number | Specifies a ColdFusion Enterprise Edition serial number. If you do not specify a valid ColdFusion Enterprise Edition serial number when creating the archive file, it is deployed as an Enterprise Edition evaluation version, which reverts to the Developer Edition after 30 days. |
COM Support | If your application doesn't use COM support, you can reduce the size of the archive file by omitting the supporting files. |
Debugging | If the current ColdFusion server is running with debugging enabled, you can disable debugging in the application contained in the archive file. |
Include CFML Source | You can optionally deploy Java bytecode instead of CFML source code. For more information, see Sourceless distribution . |
ColdFusion Administrator | If your application does not require modification by using the ColdFusion Administrator, you can reduce archive size and reduce security issues by omitting the Administrator files. |
Data sources | The data source definitions to include in the archive file. |
cfcompile webroot [directory-to-compile] |
| Parameter | Description |
webroot | Fully qualified path to the web server root; for example, C:\Inetpub\wwwroot or C:\coldfusion10\cfusion\wwwroot. |
directory-to-compile | Fully qualified path to the directory where the files to be compiled are located. This directory must be under the web root directory. If not specified, all ColdFusion templates in the web root directory are compiled. |
cfcompile -deploy webroot directory-to-compile output-directory |
| Parameter | Description |
webroot | Fully qualified path to the web server root; for example, C:\Inetpub\wwwroot or C:\coldfusion10\cfusion\wwwroot. |
directory-to-compile | Fully qualified path to the directory where the files to be compiled are located. This directory must be under the web root directory. This is required for the deploy option. |
output-directory | Fully qualified path to the directory to contain the compiled deployable files. This cannot be the same directory as the source directory. |