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
6
votes
0 answers

ColdFusion 11 CFHTTP NTLM support

In ColdFusion 11, Adobe has added NTLM support. However I fail to understand how I can get this working. In particular, the documentation seems to be wrong: it states: For NTLM, to work, the redirect attribute must be set to false However, when…
Roeland
  • 820
  • 1
  • 9
  • 33
6
votes
1 answer

ColdFusion 11 cfflush tag not working correctly?

Anyone having issues with the cfflush tag in ColdFusion 11? We have a routine that updates a live record count as it is processing a loop. In ColdFusion 10, this works fine. In ColdFusion 11, it waits until the end of the loop to update the screen.…
Casuzen
  • 169
  • 2
  • 12
5
votes
2 answers

How do i create an Add To Calendar link for apple devices?

i am creating Add To Calendar links for Google, Outlook, Yahoo and Apple. i have created all links except Apple. i want to create a link for apple devices that save the event in apple calendar. my google calendar link that i created is…
Muhammad Asif
  • 77
  • 1
  • 1
  • 2
5
votes
2 answers

Weird behaviour with arrays in ColdFusion

I am facing issue with a piece of code, with slight modification I am getting different results which should not be the case. Version 1 is giving the correct results, I am facing issue with Version 2 which is the actual code. Version 1:
Abhishekh Gupta
  • 6,206
  • 4
  • 18
  • 46
5
votes
1 answer

Coldfusion 11 REST API service seems to stop working unexpectedly

My client uses a Windows Server 2012 R2 standard OS running IIS and Coldfusion 11. I have created a REST API service through CF Admin. I understand that the API needs a manual refresh every time I make a change in any of CFCs inside the registered…
Saurabh Misra
  • 491
  • 7
  • 14
5
votes
1 answer

How to align vertical guides between line and bar charts in ZingChart?

With the Update of ColdFusion 9 to ColdFusion 11 the underlying chart engine changed from WebCharts3D to ZingCharts. While I managed to find solutions for most of the incompatibilities between the two libraries and their implementation within the…
Andreas Schuldhaus
  • 2,618
  • 2
  • 19
  • 22
5
votes
2 answers

Coldfusion: Nested Loop on api call Array & Struct

My function calls the SendGrid API. It returns an Array + structure. I'm writing a function to return a CFQuery dataset. Goal I want to pass a deserialized data object to my function and get a query dataset. Here is my working code and the…
M.A
  • 448
  • 6
  • 21
5
votes
1 answer

Conditional Formatting Excel File Using ColdFusion

I'm building a spreadsheet dynamically using the cfscript spreadsheetNew method. i.e. downloadDoc = spreadsheetNew("spreadSheetName"); spreadsheetAddRow(downloadDoc,"spreadsheetCols"); .... One of the columns I'm…
kuhl
  • 172
  • 1
  • 11
5
votes
1 answer

Passing Java Object in ColdFusion

This is a continuation of this question: WCF and ColdFusion So I managed to get a JAR working using Metro and importing the WSDL. My main class has the following functions: getVersion() and my implementation myVersion(), cancelOrder() and…
Chester
  • 1,081
  • 9
  • 18
5
votes
1 answer

How to set debug output query name using queryExecute

I'd like to find out if there is a way to set the debug output query name using queryExecute(). qryTest = queryExecute('SELECT * FROM art', {}, {datasource="cfartgallery"}); writeDump(var="#qryTest#"); …
Scott Jibben
  • 2,229
  • 1
  • 14
  • 22
5
votes
0 answers

ColdFusion 11 start-up slow over the network

I recently installed ColdFusion 11. Unconnected from a network, it takes 12seconds to start. Connected to a network and the Internet it takes six and a half minutes! What’s taking so long? How do I switch this slow network call off? How do I debug…
user619882
  • 350
  • 3
  • 13
4
votes
1 answer

"java.lang.OutOfMemoryError: Java heap space" when reading large images using ImageReadBase64() in ColdFusion 11

I have a simple REST API built in ColdFusion 11 that allows our vendor to update product information. Most of the data they send (about 30 attributes) is simple values - strings and numbers. One attribute is a Base64 encoded string that represents…
Eric Belair
  • 10,574
  • 13
  • 75
  • 116
4
votes
2 answers

Can we have cfparam with positional attributes in script based style?

@Devs, Here I'm writing the script based code for my application. While in a development I'm facing issue like Invalid CFML construct found Sample Code : cfparam(name="userID", default=0); // Named attributes are accept in script…
Kannan.P
  • 1,263
  • 7
  • 14
4
votes
1 answer

How to delete a specific column from a query ColdFusion 11

I want to delete a specific column from a query. I have already tried it with queryDeleteColumn however I get the error message: Variable QUERYDELETECOLUMN is undefined". Here is a code snippet (ColdFusion 11.0.18):
DropMania
  • 123
  • 1
  • 11
4
votes
0 answers

How to use the cffile upload directly in amazon s3?

I want to upload a file into Amazon S3. Is it possible to upload a file into S3 using cffile action="upload" in Adobe's ColdFusion server? When I tried uploading a file, it's throwing an error: The cause of this exception was: …
Sathish Chelladurai
  • 670
  • 1
  • 8
  • 23
1
2
3
37 38