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 ("ACF") implements, also used by a number of alternative CFML engines - notably Open BlueDragon and Railo.

learn more… | top users | synonyms (1)

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
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?
8
votes
1answer
63 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. ...
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
1answer
1k views

How to get list of scheduled tasks and last run results in ColdFusion?

We're trying to build a dashboard for our chron jobs -- CF, Java, SQLServer, etc. so that we can see when things were run last, what the result was, and when they're scheduled to run next. Is there a ...
6
votes
3answers
111 views

Does Coldfusion support dynamic arguments?

In python there is the *args convention I am wondering if CF9 supports something similar. Here is the python example >>> def func(*args): for a in args: print a, "is ...
6
votes
4answers
193 views

How do I implement a single sign-on for different ColdFusion applications running on the same server?

I have multiple CF applications running on the same server under the same domain name. One of them, let's call it Portal, is intended to be the single sign-on for the other applications, which let's ...
6
votes
2answers
1k views

Creating QR Code with Coldfusion

Has anyone gotten the "Open Source QR Code Library" to work with ColdFusion? I need to generate QR Codes in ColdFusion. I also found this tutorial on how to generate it using Zxing. But the tutorial ...
5
votes
2answers
98 views

List of tags not available ColdFusion 9 script syntax?

I'm looking for a complete list of tags that are not available in ColdFusion 9 script syntax. Example: CFSetting: is one example that is available in Railo but not in CF9 for use in cfscript ...
5
votes
2answers
94 views

Using ColdFusion Model-Glue, how do I redirect the user back to their requested page after logging in?

I have a secured event type, which will check to see if the user is logged in, and the redirect them to the login page if they're not: <event-types> <event-type name="securedPage"> ...
5
votes
2answers
138 views

What is the equivalent of static methods in ColdFusion?

In C#, I created static methods to help me perform simple operations. For example: public static class StringHelper { public static string Reverse(string input) { // reverse string ...
5
votes
1answer
83 views

How to workout the Haversine formula in ColdFusion

I cannot find any examples in CF of the Haversine formula (a formula for working out distances between two points on a sphere from their longitudes and latitudes). Wikipeda has examples in other ...
5
votes
2answers
848 views

Migrating from ColdFusion MX7 to ColdFusion 9. Any issues?

I'm planning a migration on a server from ColdFusion MX7 to ColdFusion 9. Does anyone know which steps I should take in order to achieve this without major issues? I can't find anything on the web ...
5
votes
2answers
580 views

Coding conventions for writting cfc's in CF9?

With the new ways of writing CFC in CF9, what are some of the coding convention new to CF9? Here are some I can think of... always use LOCAL scope always include init() method that returns itself, ...
4
votes
2answers
109 views

What's the ColdFusion 9 script syntax for cfsetting?

I'm trying to convert an Application.cfc to script. The original had this: <cfcomponent displayname="Application" output="false"> <cfset this.name = "testing"> ...
4
votes
3answers
165 views

How can I use two datasources in a CFQUERY?

I am using ColdFusion 9.1. I need to use two different datasources in some of my queries. I know it can be done because I see other code that uses two different datasources and it works fine. I've ...
4
votes
2answers
85 views

How do I cascade delete a collection in Hibernate?

Let's say I have two entities, a Post and a Comment (in ColdFusion): component persistent="true" table="post" { property name="Id" fieldtype="id"; property name="Comments" ...
4
votes
3answers
142 views

Generating an image from HTML with ColdFusion

I have a ColdFusion page with a styled HTML table in it. What I would like to be able to do is set up a feature that allows our customers to save the table as an image file, for use in their slide ...
4
votes
1answer
77 views

How do you map a base class using ColdFusion ORM?

I have two components, a base Entity component: <cfcomponent persistent="true"> <cfproperty name="Id" fieldtype="id" generator="native"> </cfcomponent> And a Client component ...
4
votes
2answers
161 views

SOA style architecture in ColdFusion?

The backend of the company's internal system is getting complicated and I would like to explore the idea of doing a SOA style architecture instead of a heavy monolithic system. Where shall I start? ...
4
votes
2answers
251 views

coldfusion 9 SerializeJSON doesn't encode UTF8 characters

I'm having some issues with Coldfusion and JSON. My users have filenames and other key words with characters like 'รง' in them which is causing me a pain when I have to pass them back via JSON. When ...
4
votes
1answer
329 views

CFCOMPILE - Precompiling ColdFusion pages & Sourceless distribution

I see that pre-compiling pages to java classes will increase performance, while using the -deploy command will encode the pages to java bytecode, thus hiding the source code. Questions: Can both of ...
4
votes
3answers
80 views

Are there non-aesthetic differences to consider between hinting techniques when writing in CFScript?

I'm aware of two methods to write code hints in CFScript. I would like to know if there are any functional, non-aesthetic differences between the two, and what's considered best practice. The first ...
4
votes
2answers
680 views

Can function argument have hint in cfscript (CF9)?

Can function argument have hint in cfscript (CF9)? CFML style: <cffunction name="myFunc" output="false" returntype="void"> <cfargument name="arg1" type="arg1" default="default" hint="my ...
3
votes
1answer
36 views

How to access a JSON structure returned to jQuery via a ColdFusion CFC?

I am using jQuery 1.7.1 and ColdFusion 9.1 I am using a jQuery function to call a CFC that returns a structure. Here's how I call the CFC: var jro = new jsMenu(); var Menu = jro.checkMenu(); Here ...
3
votes
2answers
76 views

form data into database: preventing SQL injection

It has recently been mentioned to be that our method of inserting data into our SQL database via form submission is subject to SQL injection attacks, and want some advice to harden our security. ...
3
votes
3answers
60 views

cfWheels - creating an object related objects

I have a new model myModel that I'm creating with a one-to-many relationship to a bunch of sub-models mySubModel that are being created at the same time. when I try to save the model: <cfset ...
3
votes
3answers
111 views

How to best create and store APPLICATION variables?

I am using ColdFusion 9.0.1 I am taking over a site and the guy before me created about 100 variables and put them into the APPLICATION scope. I believe that his 100 variables were continuously being ...
3
votes
1answer
79 views

How to configure ColdFusion's ORM for multiple session scope DSNs?

How do you configure ColdFusion 9's ORM to use multiple DSNs if possible? Is is possible to setup the datasource in the context of a session scope instead of the application scope? Or how, in CF9, ...
3
votes
2answers
98 views

ImageNew toBase64 encoding issue with loss of quality in ColdFusion

I have been having problems with toBase64() for awhile. I am hoping someone can tell me why CF toBase64() seems to lost something i.e. in my example it reduces the quality of an image. I have a ...
3
votes
2answers
120 views

ColdFusion Error - I am getting an error on a web site that got moved to a new server?

I moved a web site that works perfectly on multiple other servers onto a new server. We just patched the server, but I am still getting the following error: ColdFusion is not defined ...
3
votes
1answer
64 views

How do I configure ColdFusion Model Glue 3 so that it won't redirect on AJAX requests?

I have an event-handler, configured like so: <event-handler name="action.product.delete"> <broadcasts> <message="DeleteProduct"/> </broadcasts> ...
3
votes
3answers
87 views

How do you return lower-cased JSON from a CFCin ColdFusion?

I have a ColdFusion component that will return some JSON data: component { remote function GetPeople() returnformat="json" { var people = entityLoad("Person"); return people; ...
3
votes
3answers
92 views

How do I sort and filter an in-memory array of ORM objects in ColdFusion?

Let's say I have a Store entity that contains a collection of Products. So I grab my Store and Products like this: var store = entityLoadByPK("Store", 13); var products = store.getProducts(); Now ...
3
votes
1answer
101 views

Does ColdFusion support delegates?

I have several database access methods that are wrapped in a try/catch block: function GetAll() { try { entityLoad("Book"); } catch (any e) { throw ...
3
votes
2answers
149 views

Can we replace every ColdFusion tag by equivalent cfscript statements?

I wanted to know can my cfml page or cfc components with with only cfscript tag? Can we use it everywhere? Is there any limitation in its usage? Edit: I am curious because I read the following line ...
3
votes
2answers
115 views

Query param not behaving as expected

I'm using an :order query param to pass an order argument to my function. Unfortunately, it seems not to have an effect on the output. The request debugging output shows the order argument is parsed ...
3
votes
1answer
209 views

ColdFusion datasource don't connect properly

OK, so I'm trying to connect a datasource to a MySQL database. When I put in all my info I get this error: Connection verification failed for data source: phoenix3 ...
3
votes
4answers
122 views

Is there a more elegant way to transform a string into an array?

I would like to convert a string of 11 digits into an array. Is there a more elegant way to do this in ColdFusion 9? local.string = []; for (local.i = 1; local.i <= len(arguments.string); ...
3
votes
4answers
172 views

Can you var scope multiple variables at once in Coldfusion?

While it is possible and does not throw an error I would like to know if it's an approved practice to var scope multiple variables in one line like this: <cfset VAR var1 = var2 = var3 = ''> I ...
3
votes
1answer
94 views

Can ColdFusion ORM handle Unicode string?

How can I make CF9's ORM (aka Hibernate) save strings as unicode string? I.e. use prefix N'string' in SQL Server Thanks!
3
votes
3answers
600 views

Exporting hundreds of thousands of records with ColdFusion

Using ColdFusion 9.0.1, I need to export hundreds of thousands of database records to Excel XLSX or CSV (XLSX is preferred). This must be done on demand. So far I've tried using cfspreadsheet but it ...
3
votes
4answers
200 views

Check for live Data Source Name Before proceeding

Would it be ok to get a CF app to check for a valid database before proceeding to process that request? This is because there may be instances where the database server may be down or being upgraded, ...
3
votes
3answers
373 views

Cleansing string / input in Coldfusion 9

I have been working with Coldfusion 9 lately (background in PHP primarily) and I am scratching my head trying to figure out how to 'clean/sanitize' input / string that is user submitted. I want to ...
3
votes
2answers
409 views

Is it necessary to var scope loop variables in CFScript?

When using CFML and CF9 I usually var scope my loop variables; in this case local.i, for example: <cfloop list="#this.list#" index="local.i"> <cfif Len(local.i) GT 10> // do ...
3
votes
3answers
154 views

Read Application.DataSource in CF9

How can I read the default application.datasource from my code? A dump of application does not show me the datasource, and trying to read application.datasource gives an error.
3
votes
5answers
305 views

MS-SQL/ColdFusion: Mysterious database error: Object has been closed

I'm using ColdFusion with Microsoft SQL Server 2005 and on occasion I get this error: "[Macromedia][SQLServer JDBC Driver]Object has been closed." The traceback invariably leads to an SQL query as ...
3
votes
1answer
255 views

single sign on using coldfusion with IIS version 5 using NTLM

Hi can anybody direct me on this and how does this get setup. I basically have an application that I want users to be automatically logged into when logging in windows using there id and password so ...
3
votes
2answers
1k views

CF9 HQL Statement for many-to-many and Multiple Criteria

I have the following setup: Listing.cfc component persistent="true" { property name="ListingId" column="ListingId" type="numeric" ormtype="int" fieldtype="id" generator="identity"; ... ...
3
votes
3answers
311 views

CF9 EntityDelete: How to delete entities

If I have an array of entities, whats the easiest way of deleting the entire array of entities (or to put it this way, the entire ORM table)? I have: <cfset allUsers = EntityLoad("User", {}, ...

1 2 3 4 5 7