Tagged Questions

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion can also refer to CFML, the dynamic programming language which Adobe ColdFusion ("CF") implements, also used by a number of alternative CFML engines - notably Open BlueDragon and Railo.

learn more… | top users | synonyms (3)

30
votes
1answer
1k views

ColdFusion SOAP response with attachments

I am using Coldfusion9 to interact with a 3rd party SOAP service with which I need to both send and receive SOAP with attachments. I am having no issue in receiving the SOAP which may or may not have ...
23
votes
1answer
437 views

Why does 0.06 + 0.01 = 0.07 in ColdFusion?

Why don't math operations in ColdFusion seem to be affected by floating point math issues? Take the code: result = 0.06 + 0.01; writedump(result); writedump(result.getClass().getName()); Which ...
22
votes
16answers
9k views

ColdFusion vs PHP [closed]

Can anyone share with me (without fervent evangelism, please) any comparative experiences you might have with regard to ColdFusion and PHP in developing internal enterprise browser-based applications? ...
20
votes
4answers
1k views

Are ColdFusion objects passed by reference or by value?

Are ColdFusion objects (i.e. CFCs invoked via cfobject) normally passed by reference or by value (copied in memory)? And is it possible to force ColdFusion to pass an object in either manner?
17
votes
10answers
3k views

Picking a ColdFusion MVC Framework

I am taking over a lot of the ColdFusion stuff that is lingering at our shop and they are insistent it stay on ColdFusion and that new projects in this area MUST be done in CF - basically this part is ...
17
votes
15answers
3k views

What is the career value in learning ColdFusion? [closed]

ColdFusion is a language I encounter rather infrequently, however it does turn up from time to time either in job adverts or as .cfm file extensions in URLs. There are possible job opportunities near ...
16
votes
11answers
1k views

Hidden features of ColdFusion

Let's try to make this for our favourite technology too, how do you think? Hidden code tricks, unknown usages of known features, application server easter eggs are what are we looking for. So, ...
14
votes
1answer
658 views

Sorting on Column in Type Table with ColdFusion ORM

I have three tables, with the following structure: http://dl.dropbox.com/u/2586403/ORMIssues/TableLayout.png The three objects I'm dealing with are here: ...
14
votes
8answers
600 views

restart application without restarting server?

Is there a way to restart a coldfusion application without starting the entire server? There are two coldfusion applications running on a server and I only want to restart one of them.
14
votes
5answers
475 views

Tools for website/web application load testing?

Before going into production, our client demands actual numbers of how many users our web application can handle. We have all kinds of features implemented including asset management (file ...
14
votes
4answers
3k views

Things to watch out for in ColdFusion 9 with CF-ORM

What are some of the things you've observed in ColdFusion 9 with CF-ORM (Hibernate) that one should watch out for?
14
votes
11answers
6k views

Wrapping lists into columns

I'm using ColdFusion to populate a template that includes HTML lists (<ul>'s). Most of these aren't that long, but a few have ridiculously long lengths and could really stand to be in 2-3 ...
11
votes
5answers
403 views

What prevents a statically typed language from having something like Ruby's method_missing?

I don't have much experience with statically typed languages (currently learning Scala and loving it!) but one thing I've noticed is that they don't ever seem to have anything like Ruby's ...
11
votes
2answers
676 views

Serious, intermittent problem with CF Web Service

Howdy, CFers! We've got an incredibly frustrating situation with a CF Web Services-based API that we wrote and maintain. We had an API in place for years that was stable and working happily with Ruby, ...
11
votes
17answers
3k views

Is ColdFusion a good choice for web development? [closed]

I've looked into the benefits of PHP, ASP.NET, Python, Rails, etc. These technologies seem very popular among folks here, but I don't see too many ColdFusion questions. Is ColdFusion a good solution ...
10
votes
1answer
238 views

Do scheduled tasks load Application.cfc in the same way as web pages?

Do scheduled tasks load the Application.cfc in the same way as web pages? We have a task which runs nightly and needs to use a services cfc loaded into the application. Will the application scope ...
10
votes
4answers
6k views

Can I get a query row by index in ColdFusion?

I want to get a specific row in a ColdFusion Query object without looping over it. I'd like to do something like this: <cfquery name="QueryName" datasource="ds"> SELECT * FROM tablename ...
10
votes
3answers
2k views

Extending application.cfc in a subdirectory

I have the following two files and would like the second to extend the first: wwwroot\site\application.cfc wwwroot\site\dir\application.cfc However, when I go to declare the component for the ...
10
votes
2answers
1k views

Restarting ColdFusion mail queue

We are currently experiencing intermittent mail queue stoppages. I'm seeking diagnostic help in another area. In the meantime, is there a way to restart the CF mail queue without restarting the ...
10
votes
5answers
2k views

ColdFusion mail queue stops processing

Our CF server occasionally stops processing mail. This is problematic, as many of our clients depend on it. We found suggestions online that mention zero-byte files in the undeliverable folder, so ...
9
votes
2answers
89 views

What are some ColdFusion unit test frameworks?

As a related sub-question - are there any CF unit test frameworks that support or make it easier to use mocks/stubs? The 2 that I spotted in a quick google that look the most promising are MXUnit and ...
9
votes
13answers
5k views

Best IDE/Editor for ColdFusion? [closed]

I am just starting at a job in which I will be using a lot of ColdFusion. What is the best IDE/Editor to use?
9
votes
18answers
613 views

Source Code Control Systems in Web Development

We are just beginning the process of looking for a source code control system. I realize we are behind, but better late than never. None of the members on our team have experience with any systems in ...
9
votes
3answers
558 views

lint for ColdFusion

Is there an equivalent of jslint for ColdFusion?
9
votes
4answers
604 views

What rendering engine does cfdocument use for HTML->PDF conversion?

Simple question: Does anyone know what CF8 uses to render HTML into PDF? More specifically, I'd like to know the version and if there's a complete description of what styles it does/doesn't support. ...
9
votes
1answer
876 views

How to handle timezones in CFML?

How to handle timezones in CFML? So far all apps I've wrote just use the default timezone of the CF server and/or SQL server. What do you guys usually do? Do you store all dates in GMT with ...
9
votes
3answers
1k views

Automatic Documentation of ColdFusion code

I have inherited over 600 files of ColdFusion source code running a internal web site for my company. One of my tasks is to "document" it. The code base represents about 5 years of development and ...
9
votes
8answers
2k views

Is OpenBD or Railo a viable replacement for ColdFusion?

Has anyone here had any experience with running OpenBD or Railo in production? We have some legacy CF6.1 apps that need to be hosted somewhere and I'm wondering if OpenBD or Railo is stable enough for ...
9
votes
2answers
1k views

cfqueryparam with like operator in ColdFusion

I have been tasked with going through a number of ColdFusion sites that have recently been the subject of a rather nasty SQL Injection attack. Basically my work involves adding <cfqueryparam> tags ...
8
votes
1answer
62 views

Bizarre bug with named arguments and implicit struct creation in function call

Here's a really bizarre bug I recently ran across in CF9. Anyone have a clue why it is occurring and if either I am doing something wrong, or there is a hotfix available. Look at the following code. ...
8
votes
1answer
91 views

How should I use maxlength in CFQUERYPARAM list=“true”?

I'm curious how the maxlength attribute works in CFQUERYPARAM when you are passing a list. Does the maxlength apply to the length of the entire list (i.e. length of "1,2,3,4,5,6" = 11)? Or does the ...
8
votes
1answer
219 views

Does IsValid() protect from XSS?

Does using IsValid() to validate an email address or a URL format protect from XSS? Does it negate XSS when other formats are specified?
8
votes
4answers
2k views

Join Two Arrays in ColdFusion

Is there a built-in way to join two arrays in ColdFusion, similar to JavaScript's array.concat()?
8
votes
6answers
300 views

ColdFusion Security

What are the best practices for securing a coldfusion webpage from malicious users? (including, but not limited to, sql injection attacks) Is cfqueryparam enough?
8
votes
2answers
781 views

What could be causing these error?

I am seeing a very large number of the errors below in my log files. Nothing seems to be causing them in the way that none of our users are seeing any errors. What could be causing them? We are ...
8
votes
4answers
711 views

Building a Collaborative filtering / Recommendation System

I'm in the process of designing a website that is built around the concept of recommending various items to users based on their tastes. (i.e. items they've rated, items added to their favorites list, ...
8
votes
6answers
459 views

When should I use # in ColdFusion?

This has been one of the biggest obstacles in teaching new people ColdFusion. When to use # is ambiguous at best. Since using them doesn't often create a problem it seems that most people gravitate ...
8
votes
3answers
1k views

How do you organize your small reusable cffunctions?

I am reorganizing my ColdFusion directory structures and am curious about how experienced CF developers are organizing libraries of smaller cffunctions. I am not as curious about elaborate components ...
8
votes
4answers
1k views

Can a ColdFusion cfc method determine its own name?

I am creating an API, and within each method I make a call to a logging method for auditing and troubleshooting. Something like: <cffunction name="isUsernameAvailable"> <cfset ...
8
votes
4answers
527 views

Windows CPU notification for misbehaving ColdFusion application

I have a web application, written in ColdFusion, which periodically starts using 100% of the server's CPU and crashes the ColdFusion service. Since I have been unable to reproduce the problem myself, ...
8
votes
10answers
25k views

Select one column DISTINCT SQL

Added: Working with SQL Server 2000 and 2005, so has to work on both. Also, value_rk is not a number/integer (Error: Operand data type uniqueidentifier is invalid for min operator) Is there a way to ...
7
votes
3answers
112 views

API — CFC vs. cfinclude

So the company I work for has quite an unorganized approach when it comes to our site. All of our scripts are procedural with cfincludes thrown within. I've been wanting to organize this into an ...
7
votes
2answers
165 views

Benefits when changing from JRun 4.0 to Tomcat?

We are running one single instance ColdFusion 9.0.1 Enterprise on JRun 4.0 - As I just read CF 10 will replace JRun with Tomcat. What are the main benefits I'm gaining by switching over to Tomcat?
7
votes
2answers
141 views

Escaping apostrophes in regex?

I'm trying to validate a form using a regular expression found here http://regexlib.com/. What I am trying to do is filter out all characters except a-z, commas and apostrophes. If I use this code: ...
7
votes
3answers
210 views

Regex for matching quotes and single quotes

I'm currently writing a parser for ColdFusion code. I'm using a regex (in c#) to extract the name datasource attribute of the cfquery tag. For the time being the regex is the following ...
7
votes
6answers
199 views

MVC: I need to understand the Model

I've been working with the MVC pattern for a while now, but I honestly don't feel like I truly understand how to work with and apply the "Model" ... I mean, one could easily get away with using only ...
7
votes
3answers
208 views

URL Rewrite Issue with Mango Blog (404 error)

I am working on setting up an instance of Mango Blog on an Ubuntu Server running Apache 2 HTTPD and Tomcat 6 with Railo 3.1.2. I was able to get everything setup until I started trying to implement ...
7
votes
2answers
283 views

Coldfusion, whats the advantage of front controller design over page controller?

I'm from a non-computing background and I'm struggling to getting my head around MVC design approaches and frameworks in general. I "get" code re-use, and separation of logic from display, and I "get" ...
7
votes
2answers
600 views

Memory Leak Looping cfmodule inside cffunction

Googlers if you've got a heap dump with a root of coldfusion.runtime.CFDummyComponent read on. Update 2/22/2011 Marc Esher of MXUnit fame found the exact same bug in a different context. His ...
7
votes
2answers
419 views

How do I generate an OpenOffice Draw document?

I want to create a flowchart in OpenOffice Draw. Since there's a lot of steps to show (and may change in future) but I can extract the data, I want to automate the creation with the following steps: ...

1 2 3 4 5 66