Tagged Questions
ColdBox is an object-oriented, event-driven framework for ColdFusion that includes tools to help developers with bug reporting, logging, enterprise caching, debugging, i18n, URL rewriting, ORM integration, testing, and mocking.
3
votes
5answers
197 views
CF Project getting too big, what shall one do?
A simple billing system (on top of ColdBox MVC) is ballooning into a semi-enterprisey inventory + provisioning + issue-tracking + profit tracking app. They seem to be doing their own thing yet they ...
3
votes
2answers
358 views
Best practice for Datasource use in a CFC
I have an application which uses context sensitive datasources. Currently I keep the datasource information stored a such
reqeust.DB.Datasource = "DatasourceName";
request.DB.Username = ...
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 ...
1
vote
1answer
29 views
Using wirebox in coldbox how do I create a bean from a model
I am not good with the terminology yet, so please forgive/correct me. Also I have no idea hw to use Coldspring, etc, so I am trying to just use wirebox.
I want to not use the beanFactory plugin and ...
1
vote
1answer
37 views
Is there a way to (per request) set a non-persistent Database Bean in Coldbox
I am looking to migrate from a custom framework to Coldbox.
The application has 3 datasources
Core
Common
Site
The Core datasource stores information about the sites, the common datasource stores ...
1
vote
0answers
86 views
Front-Controller Framework Architecture and Services
I am trying to use my service layer in my own front-controller style framework and I've always been taught to decouple the service layer from the controller layer.
This is causing me issues as I need ...
1
vote
1answer
185 views
NullPointerExceptions in ColdFusion 9 and ColdBox on localhost
I'm running CF 9.0.1 Developer and Coldbox 3.0.0 on my local machine (64-bit Windows Vista running 32-bit CF9 on Apache). I'm working on an application that I've checked out from SVN and deployed ...
1
vote
3answers
112 views
Coldbox and cfschedule
How should I add a cfschedule task to an app using the Coldbox framework?
Should I:
a.) write an event that does what the task, and point cfschedule to that URL with Coldbox?
b.) write a simple ...
1
vote
3answers
323 views
Glassfish, railo and coldbox - messed up links?
I am new to ColdFusion and ColdBox (and programming). I tried to setup ColdBox but some of the links in the sample applications are broken.
My configuration is a GlassFish v3 installation with the ...
1
vote
2answers
197 views
HMVC framework for Coldfusion?
I'm given a task to develop a couple of applications in ColdFusion that will share some of the data - same data but different presentation.
The first solution that comes in mind is to create a ...
0
votes
0answers
11 views
Use coldbox as a sub framework within a parent cf application
I saw your question on stack overflow regarding logging into a standard coldfusion application and then utilising a coldbox module but retaining the login (session) details of the user...
I noticed ...
0
votes
2answers
79 views
Using the Coldbox framework, is there a way to intercept a renderView call and execute a different template?
I am trying to learn Coldbox to perhaps replace the current framework I am using. One of the features that I currently use is the ability to override any of the template inclusions by convention.
...
0
votes
1answer
65 views
Login to coldbox application when login to core project
I have following project structure..
WWW
core project files and folders
ticketSystem (coldbox project)
Ticket system built on framework coldbox 3.0.0. I want user automatically get logged in ...
0
votes
1answer
62 views
To use interceptors or not interceptors in MVC application framework?
Does using interceptors for controlling the flow of events in a MVC framework == business logic coupled with, or leaked to, the framework?
Is that something one should even worry about? Doesn't seem ...
0
votes
2answers
168 views
session facade, does it belong to the Model layer or Controller layer?
One of the business rules is to log which staff does which operation, and the current code passes the whole session facade into the Service (model layer).
Does it sound/smell right? Shouldn't the ...
0
votes
1answer
43 views
Names of all rendered views in ColdBox (coldfusion)
I have a handler with a whole bunch of views. I am seeking a lot for some small changes sometimes.
<cfreturn renderView("modules/account/dspCustomMenu")>
Does there exist a function so I can ...
0
votes
2answers
222 views
regenerating url in cf9/Coldbox
Hi I am wondering if there is a way to regenerate the URL when any page is loaded in coldbox/CF9 when using event.buildLink ?
Currently I get http://cawksd05.codandev.local:8080/entries/editor when ...
0
votes
0answers
288 views
Coldbox Security Interceptor
Hi I am new to coldbox and working on a guestbook messaging forum. does anyone know how I can apply some rule in coldbox to show edit and delete for specified users of admin or user in the edit page. ...
0
votes
2answers
200 views
ColdFusion 9 ORM - Securing an object at a low level
I'm looking at securing a low level object in my model (a "member" object) so by default only certain information can be accessed from it.
Here's a possible approach (damn sexy if it would work!):
...