coldfusion-8 Questions
1
We have a ColdFusion 8 (Linux) application that uses an Oracle timestamp. We just converted to Oracle 11g from 10g and we're now using Oracle's thin client on the data sources. We're getting an err...
Tiffaneytiffani asked 31/12, 2013 at 1:54
3
Solved
I need to import a java file into a coldfusion 8 page e.g. :
public class Hello
{
public String testJava()
{
return "Hello Java!!";
}
}
In Coldfusion I have the following code:
<cf...
Earful asked 29/5, 2014 at 6:9
2
Solved
Apparently ColdFusion doesn't like multiple SQL statements within a single query... so what once was this:
SET @sender_user_id = 3, @recipient_user_id = 5;
INSERT INTO messages (message_type, sen...
Surveyor asked 9/6, 2011 at 21:9
3
Solved
I am writing an application where I need to get the epoch time on the server side using ColdFusion 8 running on Windows Server 2008 and client side using javascript (testing in Google Chrome). The ...
Hus asked 30/4, 2013 at 21:57
6
Solved
I am looking for a quick way to parse HTML tags out of a ColdFusion string. We are pulling in an RSS feed, that could potentially have anything in it. We are then doing some manipulation of the inf...
Code asked 9/6, 2009 at 15:31
2
Solved
Trying to remove a userid from a given list. Can't seem to crack it... Errors on the removal at the ListDeleteValue - something I'm missing. On CF8.
<cfset curlist = "#userssigned#"> - say ...
Diahann asked 27/8, 2012 at 16:3
3
Solved
If you have code like so:
<cfcase value="Test">
/**Do Stuff
</cfcase>
Is it possible to reference that value within the case statement?
I want to concatenate a list that can handle...
Shamekashameless asked 14/7, 2014 at 1:33
1
I am currently having issues with users (or bots, not sure) visiting non-existent links that have three periods in a sub-directory.
For example, if someone goes to:
http://www.example.com/.../tes...
Albertinaalbertine asked 24/10, 2013 at 21:51
6
Solved
I have a CFC method that I would like to run at an interval of 30 seconds. However, the problem is ColdFusion won't let me schedule a task that runs at an interval of 60 seconds or lower. Does anyo...
Snippet asked 28/7, 2010 at 14:53
1
Solved
Giving the Array of Structure below:
I am able to print out all values from all fields by doing:
<cfset ColumnNames = structKeyArray(ApiData[1])>
<cfset ColumnLength = ArrayLen(Colu...
Readily asked 1/11, 2013 at 1:36
3
Solved
I have the following cfquery:
<cfquery name="CQuery" datasource="XX.X.X.XXX">
INSERT INTO DatabaseName
(PhoneNumber_vch,
Company_vch,
date_dt)
VALUES(#PhoneNumber#,
#Company#,
#Date...
Arpent asked 30/10, 2013 at 19:51
2
Solved
For example, please consider the following code snippet:
Scenario 1:
The company name I received as a part of SOAP response is as follows:
<Company>Amazon, Inc </Company>
Scenario ...
Loring asked 29/10, 2013 at 13:43
0
Recently I am done with the SSL certification installation procedure in the Coldfusion Truststore, I'm getting Attribute Validation error now which clearly states that I need to have cfhttp in my c...
Enlace asked 20/10, 2013 at 22:26
1
Solved
This is first time I'm using SOAP.I'm trying to invoke a webservice using cfinvoke which is as follows:
<cfinvoke
webservice="https://xyz/infoLookup.php?wsdl"
method="infoLookup"
returnVa...
Kosiur asked 16/10, 2013 at 19:53
1
I have a function that returns a JSON string, and ColdFusion 10 returns a slightly different value than ColdFusion 8.
In CF10, I get
{"ZIPCODE":90210,"PHONE":"(555) 382-6630","LAT":83,"DISTANCE...
Nimbus asked 23/9, 2013 at 22:35
6
Solved
When is it appropriate to use <cflock scope="application"> or it's ilk as opposed to <cflock name="foo">?
Specifically, I'm interested in using CFLock to protect shared objects in the...
Accompanyist asked 17/11, 2008 at 20:7
2
So if I have a cfqueryparam, and the datatype in SQL is TEXT, which of the CFSQLTypes do I use? Or do I follow the below link about uniqueidentifiers? Or is it just better to change the datatype to...
Tallia asked 26/6, 2013 at 21:54
2
Solved
The app: A JavaScript function listens for changes on form elements (input & select), and posts the data to a CFC method that assigns them to a Session struct. The struct is returned, making th...
Titter asked 5/6, 2013 at 18:48
3
Solved
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 tutor...
Barbarian asked 15/11, 2010 at 2:55
1
Solved
I am modifying some CF8 code that uses the cfobject tag to do interop with .NET. Currently, it's targeting .NET 2.0 assemblies. Without upgrading CF, is there a way to get it to interoperate with h...
Cuss asked 17/1, 2013 at 19:40
2
Solved
I am used to using PHP and JavaScript but I have now begun working on a project in Coldfusion.
In PHP I am used to a string being "truthy" and empty/null being "falsy".
This doesn't seem to hold ...
Baskin asked 16/1, 2013 at 14:38
1
Solved
I am using ColdFusion 8. I would like to catch a NoClassDefFoundError exception in ColdFusion however I can't... It still fails and logs the error in the exception.log file. Here is what I tried.
...
Hell asked 9/1, 2013 at 14:19
2
Solved
I need to group my query where multiple columns match. For example, group all rows where date, category, and description match. I know how to use cfoutput grouping when grouping on one column, such...
Stalk asked 18/10, 2012 at 1:24
3
Solved
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 the...
Contrapose asked 23/2, 2010 at 17:44
1
Solved
When I return a string from my remote method from cfc. The returned string is wrapped up in a strange wddxpacket:
I tried to turn off the debugging output like this:
<cfsetting showDebugOutp...
Arcuation asked 23/4, 2012 at 21:49
1 Next >
© 2022 - 2024 — McMap. All rights reserved.