Adam Tuttle

2,324
Reputation
218 views

Registered User

Name Adam Tuttle
Member for 1 year
Seen 3 hours ago
Website
Location Philadelphia, PA
Age 27
Geek, Gamer, Husband, Father
1d
comment Caching in a clustered environment
As long as you don't need to share cached data outside of ColdFusion (to .net or php, etc) then I think Steven's suggestion of using ColdFusion's built-in clustering is your best bet. It's baked in and fully supported - what more could you ask for?
1d
awarded  Notable Question
Nov
19
comment In search of JavaScript Month Picker
Yeah, that's the data I'm after; but the UI is enormous (and ugly). Thanks, though.
Nov
19
comment Flex ItemRenderer prevents use of tabbing between text inputs
As I mentioned in my comment on Shua's answer, I've just abandoned this approach altogether and gone with a custom component instead of trying to shoe-horn into the list component. Maybe this will be addressed with v4 of the framework, but I don't know. Good luck!
Nov
11
revised AJAX to do Real Time DB Polls like Twitter’s “Real Time Results” in Coldfusion
missing semicolons drive me batty!
Nov
11
answered Ways to remove the blue background of a visited cftree cftreeitem?
Nov
11
answered Coldfusion XMLFormat() not converting all characters
Nov
11
answered How to precompile a ColdFusion application under Websphere/Solaris 10
Nov
11
comment ColdFusion, CFDirectory and the French
unicode characters rendering fine for me. :) If this is true, then yes, I would suspect either a JVM or an OS problem.
Nov
11
revised ColdFusion, CFDirectory and the French
deleted 7 characters in body; edited title
Nov
11
answered ColdFusion, CFDirectory and the French
Nov
5
answered How do I pass an edited Flex datagrid to a CFC to insert to a database
Nov
5
comment Creating an efficient search capability using SQL Server (and/or coldfusion)
That's not a problem - have your update process kick off a re-indexing of the data; or do it on a schedule, like overnight every night. If you have ColdFusion, you really should make use of Verity, Lucene, or Solr. They are incredible at what they do, and included, so take advantage of them!
Nov
5
comment How to force scheme.ini to be used for MS Text Driver?
Don't forget to come back and accept your answer after 48 hours.
Nov
5
revised How to force scheme.ini to be used for MS Text Driver?
fixed code samples & some other minor stuff
Nov
5
comment Staging my Coldfusion app when using CFC inheritance/extends
I was going to suggest using GetCurrentTemplatePath() and started working up an example when I saw what I bet you see, Marc... the problem is that Application.cfc doesn't have access to the mapping for "/app" until it's done creating it, so it can't extend that. You should be able to do it with a global mapping, though.
Oct
30
accepted How can you access a secondary calendar with cfexchangeconnection?
Oct
28
revised Slurp an INI file in CFML
added cf7 syntax and jsonutil
Oct
28
answered Slurp an INI file in CFML
Oct
27
accepted Could not load definitions from resource flexTasks.tasks. It could not be found.
Oct
24
answered Could not load definitions from resource flexTasks.tasks. It could not be found.
Oct
23
comment Could not load definitions from resource flexTasks.tasks. It could not be found.
I took another stab at it and tried "flex.ant.MxmlcTask" (based on the contents of the jar), which got me farther: "build.xml:16: FLEX_HOME must be set to use the Flex Ant Tasks". I fixed this, and now I can compile. It's not ideal, but it will work for now! :)
Oct
23
comment Could not load definitions from resource flexTasks.tasks. It could not be found.
How do I know what to put as the class name? I tried "mxmlc" but that produces this error: "\build.xml:4: taskdef class mxmlc cannot be found"
Oct
23
asked Could not load definitions from resource flexTasks.tasks. It could not be found.
Oct
23
accepted BOM not expected in CF but sent by IIS/SP
Oct
5
revised Flex Drag & Drop: Detecting when all data has been moved from source to destination
added code
Oct
5
comment Flex Drag & Drop: Detecting when all data has been moved from source to destination
Yes, this did exactly what I need. Thank you! I'll edit my code into your answer.
Oct
5
revised Flex Drag & Drop: Detecting when all data has been moved from source to destination
added 4 characters in body
Oct
5
asked Flex Drag & Drop: Detecting when all data has been moved from source to destination
Oct
2
awarded  Popular Question
Oct
1
awarded  Popular Question
Sep
14
revised How hard will it be to upgrade a ColdFusion application from 5.0 to 8.0?
added link
Sep
14
revised How hard will it be to upgrade a ColdFusion application from 5.0 to 8.0?
typo
Sep
12
accepted Coldfusion - When to use the “request” scope?
Sep
9
asked In ColdFusion, why shouldn’t a Set & Forget child thread have access to session/client scopes?
Sep
2
revised How do I convert images between CMYK and RGB in ColdFusion (java)?
fixed a case-typo that would break the sample code
Sep
2
awarded  Popular Question
Aug
24
accepted Why is my PDF footer text invisible?
Aug
24
answered Flex ItemRenderer prevents use of tabbing between text inputs
Aug
20
comment Does ColdFusion have a short syntax for creating a struct?
In ColdFusion 9, implicit structure and array notation is fixed. Nesting works, and you can create them "on the fly" as function or tag arguments: doFoo({foo="bar"}) or <cffile attributeCollection="#{action='read', ...}#"/>
Aug
20
answered Creating BlackBerry method stubs using wscompile on WSDL from ColdFusion
Aug
16
awarded  Popular Question
Aug
14
comment Is it possible to do string concatenation in a ColdFusion Query of Queries?
I ran into this when I converted it to a stored procedure, but thanks.
Aug
14
asked Is it possible to do string concatenation in a ColdFusion Query of Queries?
Aug
11
revised use a startdate on a <cfinput type= “datefield”> in ColdFusion
typo
Aug
11
answered Coldfusion + JSON issue for jqGrid
Aug
11
comment Why isn’t the default for cflocation addtoken equal to no?
Instead of using the wish list, which just sends a mass email, you should use the new public bug/feature request database: cfbugs.adobe.com/cfbugreport/flexbugui/…
Aug
9
awarded  Yearling
Aug
8
revised ColdFusion 8 always opens .XLS, want .XLSX
fix typos
Aug
8
comment Ajax call in ModelGlue ColdFusion Application without rendering a view
Something about this solution really rubs me the wrong way. If you want to interrupt the Model-Glue event lifecycle, why use a Model-Glue event to begin with? In that case, I would do as Henry suggested and just use a remote proxy.