Tim N
Member since Dec 11, 2008
- Profile: /members/223-tim-n.htm
- Comments: 2
Recent Blog Comments By Tim N
-
Creating ColdFusion Components In Parent Directories (From Sub Directories) Without Mapped Paths
Posted on Aug 15, 2008 at 12:15 PM
Yes, that is what I am saying. Then you can access your cfcs using WEB-INF.path.to.cfc and your custom tags using cfimport with taglib = /WEB-INF/path/to/customtags. You just have to make sure you don't use a directory name that is in the main Coldfusion WEB-INF directory, which is C:\CFusionMX7\www... read more »
-
Creating ColdFusion Components In Parent Directories (From Sub Directories) Without Mapped Paths
Posted on Aug 15, 2008 at 3:56 AM
Since ColdFusion actually runs as a servlet inside a servlet container (JRUN), if you create a WEB-INF directory in the web root and put .cfm and .cfc files anywhere beneath it, they cannot be accessed via http. A 403 Forbidden will be returned. The reason for this is that Java applications that ru... read more »