Questions tagged [coldfusion]

ColdFusion is a rapid web application development platform that was originally designed to make it easier to connect simple HTML pages to a database.

12 questions
5
votes
5 answers

How can I move from Java and ColdFusion to Ruby on Rails?

Currently I work with ColdFusion 9+ and some Java in a Windows environment. Prior to ColdFusion, my background was in Java and JSP. I'm considering a move towards Ruby on Rails, as I think it would be a real challenge, keep things fresh, and provide…
Ciaran Archer
  • 211
  • 1
  • 7
3
votes
2 answers

How are you using CFThread in ColdFusion Applications?

I'm presenting on Concurrency in ColdFusion at CFObjective this year, and I'd like to hear how you're using CFThread in your ColdFusion applications. In addition, what problems have you had while using it, and how (if at all) have you solved…
marc esher
  • 147
  • 2
2
votes
2 answers

Building a rest api layer on top of a soap webservice

We want to build a rest api layer on top of a soap webservice. Our current situation is that we have a coldfusion application that talks with the webservice, both running on different servers. The webservice has no rest support which is something we…
Bram
  • 29
  • 1
2
votes
2 answers

Auto Transaction Failsafe's, Third Party API's, Coldfusion Schedule Files

I have an automated invoicing web app and I'm trying to build in some failsafes and a structure that will, under no circumstance, allow an invoice to be double charged. All things working perfectly, the scheduled task runs and everything charges as…
2
votes
1 answer

Is there a design pattern or technique in Coldufsion/Java for serializing objects differently depending on customer's desires?

I have data available in the form of Structs and Arrays. I need some design pattern advice, which I can use to model this situation into corresponding Coldfusion Components. Here is the data definition I have objects like Hotel Apartment Bus Each…
user160820
  • 145
  • 4
1
vote
2 answers

SQL injection attacks, how do I test and secure coldfusion queries?

I'm running Coldfusion 8 and SQL server 2008. I've been building serveral forms that insert data into the database from external users, we have a custom built security module built by the guy who I've taken his job. 1) How can we test our HTML…
Snow_Mac
  • 349
  • 1
  • 3
  • 9
1
vote
1 answer

Where to store automated transactional email templates

Our website needs to send transactional emails to customers each time an event happens on the site such as: User registration Email verification Password resets Order confirmations Despatch confirmations Comment notifications And so on. At…
1
vote
1 answer

Design pattern advice required for sending xml files to different destinations

I am using an Export Module, now I want to extend it for different connections. I have a database which contains products Its Description, Review, Images etc. I use the serialize function to save it as XML file. After saving it as XML, in admin…
0
votes
2 answers

Source control utilizing single, remote development server, with "local repository" not on dev's machine

We have a small team currently working on numerous projects. We originally started out as a two person team and jumped in head first without any kind of source control. We currently break numerous best practices and do development on live sites…
OregonJeff
  • 103
  • 3
0
votes
1 answer

Controller technique with request data in session

I am trying to find out the best possible way to save the POST data in session and making it available in different page requests. For example at website's homepage I have a Search form with different fields. On Submitting the form a product's page…
user3733648
  • 109
  • 1
0
votes
0 answers

Auto Transaction Failsafe's, Coldfusion Schedule Files

I have an automated invoicing web app and I'm trying to build in some failsafes and a structure that will, under no circumstance, allow an invoice to be double charged. All things working perfectly, the scheduled task runs and everything charges as…
-1
votes
1 answer

Design suggestion required to create an Export plugin

I am trying to create Export Module for our application, this seems to me a bit complex so I am posting it here to get some guide lines. In our database we have a list of Products, which can be exported as XML, RTF or PDF The user can select one or…