Questions tagged [coldfusion-9]

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 9.0.1, was released on July 2010. ColdFusion 9.0.2 was released in May 2011

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 9.0.1 was released in July 2010. ColdFusion 9.0.2 was released in May 2011.

Core Support ended on 12/31/2014 and Extended Support (paid support) ended on 12/31/2016. ColdFusion 9 was replaced by

Features introduced in 9 include:

  • Caching
  • MS Office Integration
  • Additional CFScript functions

For additional detail see New Functions in ColdFusion 9 and ColdFusion 9.0.1

1450 questions
40
votes
3 answers

How to reload printers in coldfusion without restarting service?

This is my basic understanding of how to make a printer available to use in ColdFusion. Remote into the server running CF using the account that the CF service is running under. Open the windows control panel and add the printer. Restart the CF…
jessieloo
  • 1,759
  • 17
  • 24
38
votes
2 answers

JavaScript Error when using Flash Forms in ColdFusion 9

I'm having a problem with Flash Forms on ColdFusion 9 that worked perfectly under ColdFusion 8. When viewing the flash form in the browser, the form elements themselves display correctly, but the data for each field is not rendered in the input…
Dan Short
  • 9,598
  • 2
  • 28
  • 53
27
votes
4 answers

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?
Henry
  • 32,689
  • 19
  • 120
  • 221
19
votes
1 answer

Switch to different XSLT Processor in ColdFusion

I am using two different versions of ColdFusion, ColdFusion 9 and ColdFusion 10, and there are different XSLT Processors in both. ColdFusion 9 is using Apache Xalan while ColdFusion 10 is using Saxon. So, is it possible to change the XSLT…
Abhishekh Gupta
  • 6,206
  • 4
  • 18
  • 46
19
votes
3 answers

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

We're trying to build a dashboard for our cron 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 way with the CFAdmin API or some undocumented…
18
votes
5 answers

What's the ColdFusion 9 script syntax for cfsetting?

I'm trying to convert an Application.cfc to script. The original had this:
Micah
  • 1,221
  • 17
  • 42
17
votes
5 answers

Prevent ColdFusion from converting string to number using SerializeJSON

I have ColdFusion 9.0.1 with the latest hotfix (4). I need ColdFusion to return all JSON data with quotes around them (as strings). I have the following problem:
Scott Chantry
  • 1,115
  • 5
  • 16
  • 29
14
votes
1 answer

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: http://dl.dropbox.com/u/2586403/ORMIssues/Objects.zip I need to be able to get a PartObject,…
Dan Short
  • 9,598
  • 2
  • 28
  • 53
14
votes
1 answer

serialize JSON with plus sign results in invalid JSON

I'm working with data via an IBM MQ call where a 0 is returned as +0.0 when this is serialized by ColdFusion 10 (10,0,11,285437) it results in invalid JSON and cannot be deserialized. stPolicy = { "prem": "+0.0" }; serializedData =…
Matt Busche
  • 14,216
  • 5
  • 36
  • 61
13
votes
3 answers

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 return reversedInput; } } Then in a…
Daniel T.
  • 37,212
  • 36
  • 139
  • 206
13
votes
1 answer

Java - GC running but not reclaiming anything

Over the last couple of days, we are seeing JVM's on our servers get into a state where they are spending 100% CPU time in GC of OldGen, when: A. They don't need to because there is plenty of space left on the heap and B. They are not reclaiming…
Dave
  • 1,068
  • 12
  • 26
12
votes
2 answers

how to loop through Query Columns in ColdFusion

I have a query in a my CFC. The function contains a simple query as such. SELECT NAMES,SALARY FROM tblTest I want to display my resultset as such (horizontally): NAME1 NAME2 NAME3…
yaya
  • 165
  • 1
  • 1
  • 8
12
votes
1 answer

Preview email with CFIMAP without marking the SEEN flag?

On ColdFusion 9 we are attempting to use CFIMAP to get a preview (subject, from, date) of the users email messages. We can get the data out with getHeaderOnly but doing so sets the SEEN flag as yes. Is there a way to use CFIMAP to get a preview…
Tom Hubbard
  • 15,820
  • 14
  • 59
  • 86
12
votes
3 answers

Looping over lists in cf9

Page 116 of the developer's guide says "Unlike the cfloop tag, CFScript for-in loops do not provide built-in support for looping over queries and lists." Q: How do I loop over a list using the new script syntax in ColdFusion 9?
Phillip Senn
  • 46,771
  • 90
  • 257
  • 373
12
votes
4 answers

Why isvalid("integer","1,5") = YES?

Why does #isValid("integer","1,5")# output YES? I expected it to output NO like #isValid("integer","1.5")# does. I'm going to validate with ...
Seybsen
  • 14,989
  • 4
  • 40
  • 73
1
2 3
96 97