November 27, 2002
Need true application segregation? ColdFusion MX can only be installed once on a server. But ColdFusion MX for J2EE does indeed support the installation of multiple instances on a single server. (Applies to: ColdFusion MX)
November 26, 2002
The simplest way to force a recompile of your CFM source code is to delete the existing compiled bytecode (the .class files). By default this are in a directory named cflcasses under WEB-INF beneath the web root. (Applies to: ColdFusion MX)
November 25, 2002
By default, ColdFusion process .cfm and .cfc files. If you’d like to add extension mappings (so that ColdFusion will process other file types) you'll need make any extension association changes in your Web server, and also modify the web.xml file adding a section for you new extension (the...
November 24, 2002
If you disable RDS in ColdFusion MX, some of the Java applets in the ColdFusion Administrator (for example, the file browser) will not work. (Applies to: ColdFusion MX)
November 23, 2002
Prior to ColdFusion MX, RDS was its own service which meant that RDS could be disabled by simply not running that service. This has changed in ColdFusion MX – RDS is a servlet that is mapped in web.xml. To disable RDS stop ColdFusion, open this file (back it up first), look for the...
November 22, 2002
Need to access ColdFusion Components (CFCs) outside of the Web root? You can, just add a ColdFusion mapping and us it in your invocation. However, these CFCs will only be usable within ColdFusion (and not externally as Web Services or via Flash Remoting). (Applies to: ColdFusion MX)
November 21, 2002
The backslash is used in Regular expressions to prefix special commands and characters. To refer to a backslash you'll need to escape it as \. (Applies to: ColdFusion MX)
November 20, 2002
If you need to refer to specific characters in Regular Expressions (even special ones like tab and new line) you may escape them using their hexadecimal or octal values. Hexadecimal values are specified in the format x00, and octal values are specified in the format 00. (Applies to: ColdFusion MX)
November 19, 2002
XSL files may contain comments, but don’t use the ColdFusion comment format of . Instead, use the HTML format, or use ... . (Applies to: ColdFusion MX)
November 18, 2002
To use XPath to search for partial matches use the substring() expression. (Applies to: ColdFusion MX)