Tagged Questions
cfc or ColdFusion Components are used to have a collection of functions in a one place. CFC are invoked by code when needed and CFC have a .cfc extension.
10
votes
3answers
2k views
Extending application.cfc in a subdirectory
I have the following two files and would like the second to extend the first:
wwwroot\site\application.cfc
wwwroot\site\dir\application.cfc
However, when I go to declare the component for the ...
7
votes
3answers
3k views
Extend a CFC using a relative path
I want to extend a CFC in a different directory and I have a couple of options, but can't figure out how to do this:
A) Use a dynamic mapping (this will have to be dynamic based on the site, e.g. for ...
6
votes
5answers
1k views
In Coldfusion, how do I init a component that is located above the current path folder?
If I have a folder structure that looks like this:
/
/bin/myComponent.cfc
/reports/index.cfm
How do I initiate myComponent.cfc from index.cfm?
myService = createObject("component", ...
6
votes
2answers
460 views
Memory implications of returning a query from a CFC
I've written a database load script in ColdFusion and I'm having a problem that the script slowly runs out of memory. I've split each table load into its own thread with <cfthread> and I'm ...
6
votes
4answers
2k views
Collection of ColdFusion CFC Best/Recommended Practices?
I have been building a list of CFC best practices to share.
There are a numerous of articles out there but I thought it might be neat to get any tricks and tips together here in one place that have ...
5
votes
3answers
375 views
How can I run a ColdFusion scheduled task at an interval <60 seconds?
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 anyone ...
5
votes
7answers
2k views
ColdFusion Server CFC Caching Issue
I develop coldFusion applications on my laptop with it's own ColdFusion 8 server with IIS which run on Windows Vista. I am having a rather annoying problem.
The problem is whenever I make any ...
5
votes
5answers
712 views
How to protect access=“remote” functions in CFCs from snoopers?
One of the great features of CFCs is the ability to reuse the code for both a straight .cfm page and for Flex apps.
One such app that I devleoped uses Flex for its charting capabilities and needs ...
4
votes
9answers
1k views
ColdFusion: Is it safe to leave out the variables keyword in a CFC?
In a ColdFusion Component (CFC), is it necessary to use fully qualified names for variables-scoped variables?
Am I going to get myself into trouble if I change this:
<cfcomponent>
...
3
votes
2answers
126 views
How can I use/access SESSION variables in a remote method of a ColdFusion CFC?
I have several methods in CFCs that are accessed remotely via JavaScript. Some of these methods use SESSION variables to determine what logic to run, and thereby, what data to return.
For instance, ...
3
votes
3answers
159 views
How does ColdFusion ORM deal with changes made outside of ORM
I've just begun learning about ColdFusion ORM and persistent cfcs and how it can improve application performance. I'm still working on gaining a full understanding before trying to implement anything ...
3
votes
5answers
279 views
CFC extends sibling folder
I've seen all kinds of solutions for extending cfcs in parent folders with access to parent files or the CF administration, but I have not seen a workable solution to extend a cfc in a ...
3
votes
3answers
263 views
coldfusion weird extra space
I have a function to convert string to number
<cffunction name="convertToNumber" returntype="numeric">
<cfargument name="separator" required="Yes" type="string" />
<cfargument ...
3
votes
2answers
153 views
ColdFusion CFC implementation of C# Partial Class?
Does ColdFusion offer a mechanism for splitting CFCs into multiple files? I am NOT talking about extension, I am talking about splitting the SAME CFC into multiple files; the same way C# allows for ...
3
votes
2answers
220 views
Garbage collecting at ColdFusion CFC
I have a CFC as singletone object in Application scope.
One of the methods is used for massive data processing and periodically causes the "Java heap space" errors.
EDIT All variables inside the ...
3
votes
2answers
431 views
How do I pass an argument to a CFC through AJAX?
I'm using the following scrip to call a CFC function:
function loadQuery() {
$.get('QueryData.cfc',{},function(GetMyData){
$("#content").html(GetMyData)
})
return false
}
...
3
votes
3answers
641 views
How do I store CFCs in a separate directory and make them work?
Is there a way to specify the component path in the tag?
I am using ColdFusion Components for my application. My application has several folders, however, and each time I want a CFC to work, I have ...
3
votes
4answers
756 views
In a Coldfusion cfc, what is the scope name for variables set outside of a function?
In a Coldfusion component / CFC, I want to properly scope some variables to be available for all contained functions, but to be hidden or blocked from outside scripts. What is the name of the cfc's ...
3
votes
4answers
755 views
Is it possible to test an object against a component type and/or inherited type?
Update: I went the route of using IsInstanceOf() which was designed for this need. However it turned out to be extremely inefficient for some unknown reason. In debugging the app later I ended up ...
2
votes
1answer
209 views
How can one get a list of all queries that have run on a page in ColdFusion 9
I would like to add some code to my Application.cfc onRequestEnd function that, if a certain application variable flag is on, will log query sql and execution time to a database table. That part is ...
2
votes
3answers
314 views
Calling overridden parent method from parent method
Heres the situation. Component B extends component A and overrides the init method to accept a different parameter. A also has a create method that calls init.
If i have an instance of B and i call ...
2
votes
3answers
655 views
How do I force a Coldfusion cfc to output numeric data over JSON as a string?
I'm calling a Coldfusion component (cfc) using jQuery.post(). I need an integer or string representation of the number returned for use in a URL.
{"PAGE":"My Page Title","ID":19382}
or
{"PAGE":"My ...
2
votes
2answers
549 views
Difficulty creating a paging function with MySQL and ColdFusion
I'm trying to create pagination for search results using MySQL and ColdFusion. My intention is to only retrieve the queries that can be displayed on a single page, thus making the process efficient. I ...
2
votes
3answers
1k views
How do I reset application.cfc without resetting the server instance? [closed]
Possible Duplicate:
restart application without restarting server?
How do I reset a Coldfusion Application / application.cfc without resetting the Coldfusion Server instance? If I remember ...
2
votes
1answer
338 views
how to get Exception details from CFC file
I have a Function in CFC file, which will be called from .cfm file like below
<cffunction name="cftest" access="public" returntype="query" output="true" hint="Function returns Records">
...
2
votes
6answers
405 views
Ajax requests, through MVC Framework (e.g. ColdBox) or not?
Do you fire ajax requests through the MVC framework of choice, or directly to the CFC?
I'm leaning towards bypassing the MVC, since I need no 'View' from the ajax request.
What are the pro's of ...
2
votes
3answers
777 views
Flex ColdFusion CFC location
I'm a ColdFusion developer looking to break into Flex. I have a couple test Flex applications Ii'm working on, but am having problem connecting to my CFCs. I've tried:
creating mappings in ...
1
vote
1answer
49 views
ColdFusion request debugging output for CFC methods
I would like to use the ColdFusion Request Debugging Output from the context of my CFC web service. Is this possible? Here is a sample CFC that I've tried to access:
/cfjunk/jsonBug.cfc:
...
1
vote
1answer
27 views
fusebox 5.5 noxml folder name problems
I am having trouble with fusebox 5.5 noxml and circuits...
I have a structure that looks like this.
controller
app.cfc
model
main
act_comm_main.cfm
monkey
act_something_else.cfm
view
main
...
1
vote
3answers
134 views
Mapping to a CFC in ColdFusion
In my application I have all my CFC's in a cfc folder. From the site root I can access them without any trouble by simply referring to them in my <cfinvoke> tag as component=cfc.mycomponent ...
1
vote
1answer
51 views
How do you dynamically return an implicitly set property in a CFC?
I'm got a CFC whose properties I want to return through a single function:
public string function getApplicationSetting(required string setting)
{
return myCFC.getSetting()
}
The problem is ...
1
vote
1answer
117 views
ColdFusion ORM cannot find CFCs when using virtual directory
I have some entities with relationships:
component name="Store" persistent="true"
{
property name="Products" fieldtype="one-to-many" cfc="Product";
}
component name="Product" persistent="true"
{
...
1
vote
2answers
231 views
ColdFusion - How to access CFC return variables in jQuery?
I am using ColdFusion 9 and jQuery. I am using CFAJAXPROXY.
I have am having trouble accessing the data returned to a jQuery object.
This is part of my jQuery code:
var jro = new jsApp();
NewUser ...
1
vote
5answers
215 views
How can I avoid using SESSION variables in CFCs when these are used for DataSource and Database Schemas?
I'm trying to refactor all of my CFCs to avoid using SESSION and APPLICATION variables (not an easy task).
However, in this application, SESSION variables are used in every database call, since ...
1
vote
2answers
285 views
jquery getJSON call to cfc works on test server but not live
I have a page that's using getJSON to access a cfc within the same domain. Everything works fine on the development server, but not on live. Other jquery executes fine, just not the .getJSON call. ...
1
vote
2answers
95 views
What do we handle validation when using implicit setters and getters in CF9?
How do we handle validation when using implicit setters and getters? I imagine when using explicit getters and setters, we would do something like:
public void function setFirstName() {
if (! ...
1
vote
2answers
72 views
how to avoid form from submitting if both these values are valid
Hi Below is the code that i am using for my form to validate id's entered in two input fields.All code is working fine.Only thing is that how to stop form from submitting if both the fields are not ...
1
vote
1answer
121 views
Upload google docs with coldfusion
I've built a forum-like app in ColdFusion and I want to add a feature with which the users can upload files to Google Docs using their Google accounts and then other users can edit those files.
I've ...
1
vote
2answers
358 views
coldfusion - receiving posted JSON data and parsing it
This is the first time I'm writing a cfc that will catch JSON data from an external web server that would be posting information.
I'm working with a new service that can be set to send us, via HTTP ...
1
vote
3answers
164 views
what is the life cycle of a ColdFusion CFC instance creation?
I would like to know how a cfc is instantiated in coldfusion under the hood !. I know you create an instance of the component and you will get a reference to the newly created instance and you can use ...
1
vote
1answer
90 views
Is it more efficient (Performance) to store the CFC in application variables OR instance the CFC on the page call?
I'm working on a ColdFusion dynamic website. For this website, there are a lot of CFCs and a lot of functions within each CFC. Would it be more efficient to store an instance of the CFC in an ...
1
vote
1answer
869 views
How to pass form values to a populate query parameters without refreshing in ColdFusion
I’m looking for a nudge in the right direction!
I have a ColdFusion page with a form which dynamically fills 3 dropdown selections using javascript (calling a function in a .js page, which in turns ...
1
vote
3answers
364 views
Coldfusion this.mappings does not work in a cfc -> function
How do I get the mappings I have defined in application.cfc to work in other functions in other cfcs?
i.e. this.mappings["plugins"] works just fine on any page but if I try to instantiate a cfc ...
1
vote
4answers
62 views
Question about URL
http://localhost/Extranet/mvc/indications.cfc/indication
This is an MVC URL that we use internally. What is the .cfc extension?
1
vote
1answer
178 views
Coldfusion: Uploading and inserting into MYSQL database
Here's the problem:
I have form with some user info, I need to attach a picture. I've got everything setup the way it needs to go, but when I process the form, it uploads the file and then inserts ...
1
vote
3answers
225 views
Can anyone help me figure out why I cannot access my cfc with an ajax request, but have no problem via browser?
I am working on a simple form using ColdFusion MX7. I have a pair of text inputs I want to populate based on a what is selected in a cfselect. Any Ajax calls to my CFC return a 404 error. If I access ...
1
vote
3answers
253 views
CFFILE attribution error with action=“rename”, says the file is invalid
My page has a form on it that interacts with a CFC via an ajax post. When the user changes the text and clicks save it should update the DB, which it does, and rename a photo with the value they typed ...
1
vote
1answer
445 views
ColdFusion & Ajax: Error Invoking CFC
I have tried multiple tutorials on this topic from Forta.com and yet run into the same error:
"Error invoking CFC/....(file path)../wgn.cfc: Internal Server Error [Enable
debugging by adding 'cfdebug ...
1
vote
1answer
227 views
How do I use Adobe CFC generator
I am using coldfusion builder to generate an ORM CFC. However, when I right click on the table in the RDS view and select "generate ORM CFC", I receive the following error message after choosing the ...
1
vote
1answer
484 views
Using Valums AjaxUpload with a CFC in ColdFusion 8
I was looking for an elegant way to upload images AJAX style. I'm new to all this mind you, and I couldn't find anything really simple and clear to teach me how to do this with a CFC and jQuery. There ...