Giancarlo Gomez
Member since Sep 2, 2009
- Profile: /members/4228-giancarlo-gomez.htm
- URL: http://giancarlogomez.com
- Comments: 9
Recent Blog Comments By Giancarlo Gomez
-
Referencing ColdFusion Query Columns In A Loop Using Both Array And Dot Notation
Posted on May 31, 2013 at 4:46 PM
@Cutter the var setting only works if you do that inside a function. Just wanted to point that out because if you try that in a regular output it will fail.... read more »
-
Referencing ColdFusion Query Columns In A Loop Using Both Array And Dot Notation
Posted on May 31, 2013 at 1:14 PM
Hey Ben, In CF10 you can also do this now. for (friend in friends){ writeOutput(friend.id); }... read more »
-
Making SOAP Web Service Requests With ColdFusion And CFHTTP
Posted on Dec 30, 2011 at 12:42 PM
Simply ... THANK YOU!!!!!!!... read more »
-
Writing Enormous Files Based On Massive Record Sets In ColdFusion
Posted on Feb 9, 2011 at 1:08 PM
Sorry the text did't wrap so here is the cut off piece. fileWriter = createObject("java","java.io.BufferedWriter"). init(createObject("java","java.io.OutputStreamWriter"). init(createObject("java","java.io.FileOutputStream"). init(theFi... read more »
-
Writing Enormous Files Based On Massive Record Sets In ColdFusion
Posted on Feb 9, 2011 at 1:06 PM
Hello Ben, Just wanted to share a change I did as I needed to write the file set as UTF-8. Below is a simple example of how to do this. // file to write fileToWrite = 'c:\testfile.txt'; // create the file theFile = createObject("java","java.io.File").init(javaCast("string... read more »
-
Extending The Application.cfc ColdFusion Framework Component With A Relative Path
Posted on Feb 2, 2011 at 12:16 PM
Hey Ben, Guess you are right, was not thinking about the subject of relative path. The only thing I can think of is having the ApplicationProxy.cfc extend the application file you want using dot notation like so ... folder.otherfolder.application. But again this is from root down, not what you are ... read more »
-
Extending The Application.cfc ColdFusion Framework Component With A Relative Path
Posted on Feb 2, 2011 at 11:51 AM
Why not just use an Application Proxy? Sub Application Extends "ApplicationProxy.cfc" and ApplicationProxy.cfc extends root "Application.cfc"... read more »
-
Writing Enormous Files Based On Massive Record Sets In ColdFusion
Posted on Jan 20, 2011 at 1:54 PM
Thank you so much Ben! This really helped me out today. I just have one question. After the entire process is done and I try to move the file and or delete (outside of cf) it says that the file is open by another program. It lloks like java is not letting go of the file. Is there something I am miss... read more »
-
Exploring IIS Mod-Rewrite For Rewriting URLs In A ColdFusion Application
Posted on Sep 2, 2009 at 9:33 AM
It's Free, It's easy (RegEx), It's Powerful and I use it on multiple client websites. Ionics Isapi Rewrite Filter http://www.codeplex.com/IIRF... read more »