Tagged Questions
ColdSpring is a web framework for the ColdFusion application programming language, based on the Java Spring Framework, providing dependency injection, inversion of control and aspect oriented programming.
2
votes
2answers
120 views
How can I configure AOP in ColdSpring 2.0?
I'd like to implement some before and after method advisors in Coldspring 2.0, and I'd like to use the new schema for AOP and the new autoproxying feature. Unfortunently, the Narwhal documentation for ...
2
votes
2answers
56 views
Does ColdSpring work with MX 6?
I'm embarrassed to ask such a simple question, but my searches are turning up zip. So .. does ColdSpring works with MX 6? Thanks from heat fried brain ...
2
votes
6answers
162 views
Refactoring ColdFusion 5 tag-based code into CFCs
I feel the need to refactor my old CF5 based code into CFC's. We already have some code in ColdSpring and Transfer but feel a large rewrite to ColdSpring and Transfer is pointless.
What tips, ...
1
vote
1answer
41 views
Coldfusion errors that are suddenly fixed after recompiling the component
We have a coldfusion project on a live server, and the same project on a local development server. Both projects are nearly identical but a few components under development on the dev server. Both ...
1
vote
1answer
31 views
How do I access a bean outside of a controller in ColdFusion Model Glue 3?
Model Glue 3 introduced bean injection, which allows you to do this in a controller to access it:
beans.component.function();
However, the beans scope is only available for a controller. How would ...
1
vote
1answer
83 views
Ant + Coldspring
I am working with the new cfbuilder and using ANT to push my code to my dev server. One issue that keeps cropping up is when I make changes to my beans.xml file my ant build throws an exception on my ...
0
votes
0answers
30 views
Coldfusion Application: Framework/1 interfering with AJAX calls from Coldspring remote service
I'm having a problem trying to figure out how to make an ajax call on
an application I'm writing. The application is a fw/1 with coldspring
handling my beans.
Right now I'm attempting to populate a ...
0
votes
2answers
131 views
ColdSpring in Five minutes
I'm rereading ColdSpring in 5 minutes.
It says "The UserService needs the UserGateway, and the UserGateway needs the ConfigBean".
No it does not! The UserService does not need anything. It doesn't ...