Questions tagged [coldfusion-11]

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 11 was released on April 29, 2014.

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 11 (Splendor) was released on April 29, 2014. New features include:

Preview the new features in ColdFusion Project Splendor:

  • Leverage your existing CFML skills to develop mobile apps and use built-in integration with Adobe Phonegap to build easily and quickly deliver them as installed apps that run on iOS and Android™ devices.
  • Use unique on-device debugging capabilities to identify and fix errors in both installed apps as well as browser-based mobile applications.
  • Security enhancements to limit the attack surface by restricting default remote access to the admin portal.
  • Develop applications faster and more easily since every functionality of ColdFusion Project Splendor can be accessed using CFSCRIPT.
  • Use the improved conversion engine from Adobe to generate superior quality PDFs from HTML pages.
  • Allow your end users to access your web application with their existing social media accounts.
  • Maintain and modify existing code faster and more easily with member functions on ColdFusion objects.
  • Secure your PDFs using electronic signatures and manipulate them using full DDX support.
557 questions
0
votes
0 answers

Why am I getting a 404 error with an http object in ColdFusion 11 when the URL exists?

I have an HTTP object I am using in my application like so... httpService = new…
Carl
  • 1,246
  • 3
  • 21
  • 39
0
votes
1 answer

ArrayResize() creates undefined objects

I want an array of 16 blank items I don't want to this.arConfig = ['','','','','','','','','','','','','','','','','']; When I try ArrayResize(this.arConfig, 16); I get Is there a way to cleanly load this. Note: I expect that someday 16 won't be…
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
0
votes
1 answer

ColdFusion: ORM Relationship with LinkTable and Multiple Foreign Keys

My database structure mainly consists of multiple primary keys per table, therefore multiple columns are required per join. I'm trying to use ColdFusion (11 to be specific) ORM relation property that has a linktable. I think the issue is with two…
Panman
  • 1,157
  • 2
  • 8
  • 19
0
votes
1 answer

Can I Use the same certificate for Token Security and Protocol Security in SAML2?

Can I use the same certificate issued by a certificate authority to sign the security token of SAML assertion and also for HTTPS SSL on IIS? I am using ColdFusion to create the SAML Response and used Java Keytool to create the certifcate.
Balcha Aba Nebso
  • 43
  • 1
  • 1
  • 5
0
votes
2 answers

Is the "cfgrid form field is corrupt" error after submit solved for HTML-type cfgrids in Adobe Coldfusion 11?

I'm using cfgrid with format="html" to edit data after submission on Adobe's coldfusion-11 Update 4 (11,0,04,293328) and jQuery 1.8.3 (on java version 1.7.0_55 on IIS7 on Windows Server 2008 R2 64bit) and get a "submitted cfgrid form field is…
alesscor
  • 1,163
  • 1
  • 9
  • 17
0
votes
0 answers

CFChart - flash charts not writing to file

I am upgrading an application that is currently working on ColdFusion MX 7 server to ColdFusion 11 server. There are some charts in the applications which are generated and then written to files and stored in a folder inside the application…
SKChauhan
  • 27
  • 8
0
votes
3 answers

ColdFusion User login fails after session timeout

We’ve recently moved to cf11 for a project and have hit on an unusual problem: When a user lets their session timeout, and they try to login back in it takes two attempts for them to successfully log in. When a user manually logs out, they have no…
user619882
  • 350
  • 3
  • 13
0
votes
1 answer

Manipulating form data server-side with JSoup on ColdFusion

Following on from my previous question (How to replace all anchor tags with a different anchor using regex in ColdFusion), I would like to use JSoup to manipulate the content of an Argument thats come in from a Form, before inserting the manipulated…
volume one
  • 6,800
  • 13
  • 67
  • 146
0
votes
1 answer

Correct way to pass in a SQL function as a value

I want to update a record's DateUpdated field each time the user updates the record. I thought I should do it like this: UPDATE dbo.MyTable SET DateUpdated = I don't know if this correct.…
volume one
  • 6,800
  • 13
  • 67
  • 146
0
votes
1 answer

File Not Found in CF11 even though file exists

Well, I have been experiencing same error as discussed here: Coldfusion 10 File Not Found Error I am using Coldfusion 11 , developer edition on my Laptop , Windows 8.1 Pro (OS). People have suggested two approaches over there to overcome this…
rocky
  • 435
  • 3
  • 8
  • 18
0
votes
2 answers

Coldfusion Toy Page Memory Leak

I just set up a short toy learning ColdFusion page on a server. The page makes a call out to a cffunction, which gets the current date, determines the year, and then returns a boolean reflecting whether or not the current year is a leap year. This…
lyonssp
  • 117
  • 1
  • 1
  • 7
0
votes
2 answers

DateFormat default mask

In either CF 10 or CF 11 is there a way to change the default mask used by the DateFormat() function? The Adobe docs indicate the default is "dd-mmm-yyyy" but I haven't seen anything about whether that default can be changed or not. I'm hoping there…
Sam M
  • 4,136
  • 4
  • 29
  • 42
0
votes
1 answer

Server variables in outbound rules always show /jakarta/isapi_redirect.dll rather than actual path

I'm running ColdFusion 11 on Windows 2012/IIS8 and am trying to set up URL writing in IIS with an outbound rule to allow a server variable to be added if the URL matches a certain regular expression:
Loftx
  • 1,760
  • 4
  • 29
  • 50
0
votes
1 answer

CF11 cfgrid Firefox 35 Relative positioning of table rows and Firebug error

This has been reported before but not with current Version of CF11 Update 3 and Firefox 35.0. Using Firebug creates a long delay and brings up the warning: Relative positioning of table rows and row groups is now supported. This site may need to be…
Richard
  • 11
  • 2
0
votes
3 answers

How to order a query by values in different columns

I have a recordset named rsProductClass that is returned from a table in the database. It is a very simple SELECT * FROM Table WHERE ProductID = {ID Value Here} and the table is like this: ProductID | UPPERTIER | LOWERTIER | NATIER | OTHERTIER 1 …
volume one
  • 6,800
  • 13
  • 67
  • 146