Questions tagged [coldfusion-2016]

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 2016 was released on February 15, 2016. ColdFusion was later updated to ColdFusion 2018.

New features in ColdFusion 2016:

  • PDF Enhancements
  • Updated functions including Query and Array processing functions
  • Language enhancements including safe navigation (?.)
  • Command Line Interface
  • Swagger document generation

See: https://helpx.adobe.com/coldfusion/2016/topics.html#dynamicpod_reference

353 questions
0
votes
0 answers

CFSharepoint integration of ColdFusion with SharePoint

I'm trying to integrate ColdFusion version 2016 application with SharePoint. I have a ColdFusion app that is trying to access a csv file on a SharePoint site. I'm able to access the csv file on SharePoint when I pass in the URL into a browser, but…
Roger Dodger
  • 927
  • 2
  • 16
  • 37
0
votes
2 answers

Passing an input from form into Coldfusion Query

Hello I am trying to pass a variable who's value would come from a form input to a Query to retrieve a value and pass back to the form as a hidden value.Very confusing, and I hope I am overthinking this. I am getting a Passed_Lot_Number is undefined…
G.Rose
  • 644
  • 7
  • 29
0
votes
2 answers

Passing form input using Coldfusion to external URL

I am trying to pass a form input to an external URL to be used somewhere else and perform a certain task. The issue I am having is actually getting the value and passing it. I either get a LotNumber is undefined or an error executing a Cfquery. I…
G.Rose
  • 644
  • 7
  • 29
0
votes
1 answer

Access the page if user is not loggedin?

I have login in my new application that checks on each request if user is logged in. If user is not logged in automatically will be redirected to the login page. I have situation where user clicks on Forgot Password. In that case I generated…
espresso_coffee
  • 5,980
  • 11
  • 83
  • 193
0
votes
1 answer

How to check native code error in cfcatch block?

I have cfcatch block that should catch any exception. Once error detected I build custom function that takes NativeErrorCode as an argument. If error code is one that I'm looking for that indicates duplicate/PK violation I have custom message that…
espresso_coffee
  • 5,980
  • 11
  • 83
  • 193
0
votes
1 answer

How to handle errors in ColdFusion stored procedure results?

I use ColdFusion to call stored procedure to either insert or update users data. These two transactions are separated in two procedures. My SQL code should return row-count 1 or 0 depends if transaction was successful or not. If transaction failed…
0
votes
1 answer

Filter SQL query Where clause using OR vs ColdFusion?

I have search form where user selects some criteria before they submit request to the server. This involves search criteria that can be search by Name, Number or Show All. In our existing (old system) previous programmers used something like…
espresso_coffee
  • 5,980
  • 11
  • 83
  • 193
0
votes
1 answer

How to build JAR files from

I am using ColdFusion 2016 and want to use this java library from within ColdFusion. https://github.com/getstream/stream-java It is not clear what folders are needed to make this work. I'm very new to doing something specifically like this so…
0
votes
0 answers

Java to use ColdFusion classes through CFCProxy is throwing ClassNotFoundException

Scenario: I am doing a spike to see the feasibility of Java application communicating to another ColdFusion application which resides on the same JVM. The intention is to create micro services using springboot on top of existing ColdFusion…
arp
  • 1,423
  • 2
  • 10
  • 11
0
votes
2 answers

Stripping non html tags/text from a string

I have a string which I need to send in an xml node to a third party application. That string is then parsed through a html parser over there. The string can have html, but problem occurs with non html tags. For example
CFML_Developer
  • 1,565
  • 7
  • 18
0
votes
2 answers

how to know what ran from upsert query

I have a query if not exists (select someID from tempTable where someID = 20) insert into tempTable (someID, colA, colB) values (1,2,3) else update tempTable set colA = 2, colB =3 where someID =…
CFML_Developer
  • 1,565
  • 7
  • 18
0
votes
1 answer
0
votes
0 answers

Convert PHP array to Coldfusion

I'm trying to convert a PHP array to coldfusion I'm stumped and was hoping you all could help. Below is the line of code I'm trying to convert: $round[$i][$j]["Home"]=$home[$j]; Any help would be greatly appreciated. If you need more info please…
0
votes
1 answer

ColdFusion 2016 upgrade giving stored procedure error

We are in the process of upgrading to ColdFusion 2016 to work with SqlServer 2017. Our current version (ColdFusion 10/SqlServer 2008) is working fine. We are testing our code in a development environment to find any issues with it and I keep coming…
jjasper0729
  • 285
  • 3
  • 18
0
votes
1 answer

URL Parameters are not processed when opening in MS Edge

Okay, here's a weird issue for you guy sand gals. I'm using a window.open tag in JS to open a .cfm file that will open in Excel (Report), however, the appended URL variable appears to change. It seems that the ? gets changed to an _ and thus the…
David Jacobson
  • 169
  • 2
  • 11