Questions tagged [coldfusion-8]

For issues relating to using ColdFusion, version 8.

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 8 new features include

  • Built in AJAX for various UI elements. This is based ext-js
  • Exchange support
  • RSS
  • ZIP files
583 questions
5
votes
2 answers

How to embed an image in a PDF using cfpdfform

I'm dynamically generating a PDF with a few variables but also need to be able to embed an image on the PDF. Anyone have any experience doing this using ?
JGrimm
  • 379
  • 2
  • 4
  • 22
5
votes
1 answer

Coldfusion not converting accented text or MS Word chars

Running Coldfusion 8, I am trying to clean text input before saving to a database that will take things like the MS equivalent of ' " - and accented letters, and converting them. I have tried replace, REReplace, and various UDFs found on the…
Kevin
  • 12,656
  • 11
  • 54
  • 84
5
votes
3 answers

Can I install coldfusion 9 and coldfusion 8 on the same server?

Can I install coldfusion 8 and coldfusion 9 on the same server and use them separately? Great thanks.
Just a learner
  • 21,448
  • 45
  • 133
  • 206
5
votes
3 answers

ColdFusion cfcase statements and referencing their variables?

If you have code like so: /**Do Stuff Is it possible to reference that value within the case statement? I want to concatenate a list that can handle multiple cases and be able to dynamically reference the…
JTester
  • 411
  • 1
  • 7
  • 15
5
votes
2 answers

Why is a ColdFusion SESSION variable "undefined" after being referenced a few lines before?

Running ColdFusion 8.01 Standard on Windows2003/IIS6 Application.cfc: THIS.SessionManagement = "Yes"; THIS.SessionTimeout = CreateTimeSpan(0, 3, 0, 0); THIS.ApplicationTimeout =…
Eric Belair
  • 10,296
  • 13
  • 70
  • 107
5
votes
3 answers

Tackling Null Values while Inserting data in data base

I have the following cfquery: INSERT INTO DatabaseName (PhoneNumber_vch, Company_vch, date_dt) VALUES(#PhoneNumber#, #Company#, …
Jack
  • 781
  • 3
  • 12
  • 22
5
votes
1 answer

Getting Unable to read WSDL error

This is first time I'm using SOAP.I'm trying to invoke a webservice using cfinvoke which is as follows:
Jack
  • 781
  • 3
  • 12
  • 22
5
votes
2 answers

Translate session from CFScript to ColdFusion tag syntax

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 the form data usable for the life of the session. The app…
rickp
  • 65
  • 2
5
votes
1 answer

cfc remote method result wrapped up in wddxpacket

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: But it didn't work.
Adil Malik
  • 5,813
  • 7
  • 44
  • 74
4
votes
1 answer

In ColdFusion 8, can you declare a function as private using cfscript?

Normally you create a function using cfscript like: function foo() { return "bar"; } Is there a way to declare this as a private function, available only to other methods inside the same cfc? I know you can do it with…
Ryan Stille
  • 1,314
  • 1
  • 13
  • 18
4
votes
1 answer

AES encrypt in ColdFusion, decrypt in ruby

We can't for the life of us figure this out. We need to make ColdFusion encrypt data which ruby will decrypt. We've tried so many different settings on the ColdFusion side, looked through SO posts, looked through Adobe docs, and cannot make it work.…
Daniel Huckstep
  • 5,160
  • 8
  • 38
  • 53
4
votes
2 answers

Can I make an unbuffered query in ColdFusion?

I'm in the process of porting a Java desktop application to a ColdFusion web app. This desktop app made queries with very large result sets (thousands of text records) that, while being all right on the database side, could take a lot of memory on…
zneak
  • 124,558
  • 39
  • 238
  • 307
4
votes
1 answer

Using CFMAIL tag to send emails with an image

My code is as below, there is an image above this msg.
MadushM
  • 377
  • 3
  • 16
4
votes
2 answers

Cannot run program "p4": CreateProcess error=2, The system cannot find the file specified

I'm developing automate deployment script for Coldfusion project. Tool: cruisecontrol.net, ant script Source control: perforce Executing the following ant script from cruisecontrol.net i'm getting this error: "Cannot run program "p4": CreateProcess…
Nagarajan S
  • 103
  • 1
  • 7
4
votes
2 answers

Am I using J2EE or ColdFusion session variables?

Is there anyway in your code to specify using J2EE session management instead of ColdFusion session management or is it controlled completely through the ColdFusion administrator? Also, what problems might arise if you turn off J2EE session…
Jason
  • 15,436
  • 20
  • 71
  • 112
1 2
3
38 39