1
vote
3answers
101 views

coldfusion CRUD, there must be a quick way to do this

We currently use CF8 and don't have access to any ORM functionality. However, I'm hoping someone out there can give me any tips on how to create all my crud actions more quickly than we are doing them ...
2
votes
1answer
50 views

Coldfusion FileUpload function from cfc file not working

I am currently trying to upload a file using a function from a cfc file. I can get the code to work when I just call the <cffile action="upload"> on the same page. However, I wanted to learn how ...
2
votes
1answer
57 views

NULL POINTER error when using ObjectLoad(ObjectSave())

Update this has been filed as a bug in ColdFusion, https://bugbase.adobe.com/index.cfm?event=bug&id=3546237 I've been having a problem with CF9 and NULL POINTER errors that do not appear to be ...
1
vote
1answer
78 views

Extend ORM persistent CFCs in parent/sub application

I'm working on a parent/sub application structure in CFML (Railo) and I'm struggling with extending my persistent (ORM) CFCs. What I'd like is for my persistent CFCs to live in the parent ...
1
vote
1answer
42 views

Sub-application with ColdSpring doesn't have access to package methods

I'm having trouble creating a sub-application using ColdSpring to instantiate my objects. In my parent application, I have a ColdSpring config file which is instantiating a bunch of components with ...
0
votes
3answers
117 views

Difference between cfc and cfm

I'm trying to create basically a library of UDFs (User Defined Functions) for a web site run in ColdFusion. While doing this I am trying to find out what the differences are between cfc and cfm files. ...
0
votes
1answer
98 views

Coldfusion 10 invoke cfc error

Anyone have any idea on how to fix this? "Unable to invoke CFC - The value returned from the getAllContacts function is not of type Contacts[]. If the component name is specified as a return type, ...
1
vote
0answers
85 views

Coldfusion REST - Serialize Array of CFC

Hi I'm trying to serialize an array of CFCs from one of my REST endpoints. I found this Example: Array of CFC Serialization in the Adobe Help, which pretty much is exactly what I want to do (I can ...
8
votes
1answer
127 views

Extending ColdFusion with application wide UDFs

I've been exploring different methods of structuring my ColdFusion applications and I'm looking for some opinions on the best way to provide application wide UDFs. For each of my apps, I generally ...
0
votes
1answer
71 views

How to handle “Invalid method Code length” in Coldfusion?

I have a bunch of cfc files (running coldfusion8), which consist of a cfswitch bundling similar functions (user, search, ...). Some of the cfc files are becoming too large, so I'm receiving a Invalid ...
1
vote
1answer
193 views

AngularJS and ColdFusion CFCs

I'm trying to pick up AngularJS with a ColdFusion back end and am running into a few roadblocks. I am modifying their "To Do" app http://angularjs.org/ with the CF Art Gallery database. I'm trying ...
2
votes
1answer
151 views

How to declare dynamic form field defaults inside a Coldfusion CFC?

I'm looking for a way to declare form default values dynamically in a CFC, I'm calling via AJAX. The current CFC sends orders, which I need to break down into sub-orders. I had been using this: ...
0
votes
3answers
202 views

Coldfusion: Need to disable or block “Error invoking CFC - server error” error pop-up message

I have a .cfm and .cfc that I am using to edit data in a cfgrid on the .cfm, and it works, however 10% of the time I will get the following error message: "Error invoking CFC /test/editCFgrid.cfc: ...
2
votes
1answer
130 views

jquery cfajaxproxy fullcalendar pass start and end dates

I am using FullCalendar (1.5.2), jQuery (1.8.1), but the older ColdFusion 8. The issue I am having is how to properly pass the start and end dates for the current calendar month to a cfc using proxy. ...
1
vote
1answer
104 views

How do I work around the change in <cflocation> inside a CFC?

This post addresses the problem I'm having. Coldfusion 8 doing both CFIf and the CFElse statement? My cfselect has a bind to a CFC to build its array dynamically. Ok, now I want to add an array ...
1
vote
1answer
107 views

<CFContent type=text/x-javascript> and Ajax

I am using Ajax on a CFC file. I can't get the result from the function that I am calling from Ajax. I set a debug message (Alert()), but can't see it. Any suggestion? function ...
1
vote
0answers
56 views

Getting “Failed to update” message despite successful update

Using the jquery plugin http://code.google.com/p/jquery-in-place-editor/ with Coldfusion. It was working great with a post to a CFM page, but when I moved my update to a CFC, I started getting a ...
1
vote
2answers
127 views

jquery integration with coldfusion cfc and checkbox form

I am new to jquery and want to accomplish the following. 1) Generate and show a form when a button is clicked 2) Have the user use checkboxes on that form to indicate who they want to send the email ...
4
votes
2answers
174 views

Jquery not working with call to coldfusion cfc

I am new to jquery and am trying to make functions that will call and update my database with a dialog box. I modified an existing template to produce the code below and can't get the function ...
2
votes
2answers
124 views

Coldfusion Pagination - Fixed Number of Page Numbers

I'm using dopefly's Pagination.cfc to create Pagination on a site I'm building, however I can't get it to react specifically how I want it to. I'm trying to get it so it starts like this *1* 2 3 4 ...
1
vote
1answer
107 views

Relative/Absolute CFC path in Open BlueDragon

I'm trying to migrate an existing ColdFusion codebase from Adobe CF8 to OpenBD. My files include something like this: /cfc/one.cfc /cfc/two.cfc /app/page.cfm In CF8 I had a mapping from 'cfc' to ...
1
vote
1answer
89 views

Avoiding Select * in cfc where ORM is not an option

In my CFCs, I have lists of DB fields that will be used in the SELECT statement inside of a cfquery <cfcomponent> <cfscript> ... variables.lstNode = "NodeID,ParentNodeID,Root,Kind ...
1
vote
3answers
210 views

jquery,cfc login/forgot password check for existing record in database

I've been trying to make something similar to the login/forgot password popups on download.cnet.com. While my code actually works fine, there is a catch. I cannot make it work on enter. The form is ...
1
vote
3answers
316 views

Binding a CFC to cfselect box

I am creating a form and for what ever reason, when using a bindOnLoad with a remote CFC, my default value doesn't seem to appear. Here is the cfselect: <cfselect name="edcs" id="edcs" ...
1
vote
1answer
211 views

How to dynamically call a CFC function

I used CFBuilder "create CFC" plugin to create a services for a table, so i could play around with OOD. Now I am struggling to use the "update" function generated in a dynamic manner. I call a cfc, ...
0
votes
2answers
272 views

Coldfusion mapping cfinclude

I am trying to use mappings for the first time and I am having some issues. In my CFadmin I created a mapping which goes like this: Logical Path: /email_sender Directory Path: ...
6
votes
3answers
119 views

Concurrency and scoping issues when CFM is included from within a CFC

I am placing a component in my application scope so that it is shared across all requests and it includes a a cfm template: <cfcomponent output="false"> <cffunction name="run" ...
3
votes
1answer
170 views

404 error - Google attempting to index ColdFusion CFC

For months, our IIS/ColdFusion server has been throwing 404 errors during Google crawler scans. Normally it's easy to track these down but in this case, Google is trying to scan our CFC files. The ...
2
votes
4answers
438 views

Dropdown Population with Jquery Ajax & CFC

I'm trying to populate a HTML dropdown with database data. To do so, I'm retrieving data from database and creating option elements as below: var obj = eval("(" + data + ")"); for (i = 1; i <= ...
1
vote
3answers
92 views

Inherited CFC not populating

I have two CFC's which are Beans with DAO functions. I have set up inheritance where the child cfc extends the parent. Both objects have identical structures; Functions: init, read, etc. and ...
0
votes
2answers
139 views

How to traverse two levels up when referencing a coldfusion component in a cfinvoke?

If I don't want to do any mappings, is there another way to call a method in a component, which is "two levels up". Like so: service component_to_call.cfc mem pages handlers ...
2
votes
2answers
309 views

ColdFusion 9 Dynamic Method Call

I am trying to work out the correct <cfscript> syntax for calling a dynamic method within ColdFusion 9. I have tried a number of variations and had a good search around. <cfinvoke> is ...
0
votes
2answers
44 views

Trouble with page header code being added to a cfc call from a bind

I have some includes in my onRequestStart() Method which I have by-passed for cfc requests using: <cfif listLast(arguments.thePage, ".") neq "cfc"> (which I got from Ray Camden on a forum here ...
1
vote
1answer
85 views

Uploading an Converting Files In one script

I've written a process for my company which pulls audio files (wav) from a server to their permanent location. Pretty straight forward using ftp. The issue now is that we wish to convert these wav ...
1
vote
1answer
130 views

Why is the my $.ajax( ) data not passing to my .cfc

I'm updating a variable based on the value selected from a drop-down list, and it just isn't working. On this site I have another CFC which is working fine, however this one is just downright ...
0
votes
0answers
95 views

adding columns to cfgrid breaks link to cfc

I'm running ColdFusion 9,0,0,251028 standard on windows server 2003 r2 with an Access 97 datasource. I'm trying to add a new column to an existing cfgrid. However, after adding the cfgridcolumns, I ...
2
votes
2answers
148 views

I need Coldfusion to easily work with JSON data returned from AJAX call

I have an AJAX call to a remote CFC and get the data back with JSON just how I like, but I'm having trouble outputting the data without having to guess the structure index with hardcoded index values ...
0
votes
1answer
83 views

Coldfusion extended component missing parameters

I'm trying to get a CFC (webCFC) with a remote function to return an instance of a different CFC (objCFC). Here are the CFCs: #webCFC component { remote function displayCFC(version=1) { ...
1
vote
2answers
175 views

Enable Coldfusion ORM per component

I've started using ORM in Coldfusion 9, but I'm running into an issue in which I've got a CFC that is set to persistant=true so that when I run myCFC.init() the default values of the properties are ...
0
votes
1answer
135 views

How do I programmatically generate Coldfusion ORM Entities and Properties

Let us say that I want to use Coldfusion's Hibernate ORM. But I don't want to write the CFC's for each object, I have a configuration file which details my schema. I want to parse that configuration ...
0
votes
1answer
68 views

What is the security or performance risk in including all of UDF's on every page request in ColdFusion?

I currently have my model and controller cfc's extend a cfc, via a Proxy component, that has all my functions. This makes all those UDF's available everywhere in the app. Are there security or ...
3
votes
1answer
148 views

SQL statement not working when placed in ColdFusion CFC

I have the following table join that runs fine in Microsoft SQL Server and returns the expected results. SELECT d.id1, c.content_type FROM Document2 AS d INNER JOIN Content2 AS ...
2
votes
2answers
432 views

Jquery Ajax calling CFC not working

I'm having issues with following code. I'm looking to validate an address(city,zip,state) and check it against what's in our database, which is called in the CFC. When I have the dataFilter setting ...
4
votes
2answers
342 views

Components mapping in Railo

I would like to put all of my CFC into /components folder and be able to call them from different places in application eg. from /forums/index.cfm. How would I go about setting the mappings?
0
votes
2answers
146 views

How To Share Query Data Between Two ColdFusion CFCs?

I am creating a CFC called "core_appdata". This CFC will hold the core stored procedures for an application. Example.... <cfcomponent displayname="core_appdata" hint="I Return Core App Data" ...
0
votes
2answers
323 views

Why I can't call method in Coldfusion component?

I'm using Coldfusion8 and am stuck trying to call a component. This worked up until a few days ago and although I can't recall changing anything, all my calls to this component now fail. Here the ...
1
vote
1answer
189 views

cfquery in cfcomponent not returning latest results in coldfusion 9

I'm new to ColdFusion. I'm having a problem with coldfusion components. I have a functionality where i call cfcomponent function through jquery ajax call, and in the cffunction i'm executing a query ...
1
vote
1answer
86 views

Using cfc with threads in a coldfusion page

I have a component "bulletin.cfc" which contains lots of functions. My main page has two threads running on it using the cfthread tag. Coming from .net I thought I would create two instrances of ...
1
vote
3answers
290 views

NullPointerException when extending persistent CFC

The error occurs when attempting to extend Unit with County, specifically, when restarting the application to initialize ORM. [Note: I'm attempting single-table inheritance] ORM is managing my DB ...
0
votes
2answers
105 views

How can I re-use queries in CRUD OOP CFCs?

I have a simple CFC class that handles CRUD on a Product - Product.cfc. I am extending the class to allow for additional properties based on the application - for instance CartProduct.cfc extends ...

1 2 3 4 5 6