Questions tagged [bluedragon]

BlueDragon is an alternative to ColdFusion, providing an environment to develop CFML-based applications. NOTE: It is useful to also use the `coldfusion` tag for any BlueDragon questions that focus on CFML syntax/language.

BlueDragon is a ColdFusion Markup Language (CFML) engine comparable to Adobe Systems's ColdFusion. It is licensed and distributed by New Atlanta from TagServlet Ltd based in Scotland. BlueDragon is also distributed and supported by BEA Systems on their Oracle WebLogic Server server platform.

BlueDragon applications run on a variety of platforms, including Microsoft Windows, Linux, and Mac OS X. It is mostly compatible with ColdFusion MX 7, and provides three distinct versions:

  • BlueDragon for the Microsoft .NET Framework, which allows native integration/deployment of ColdFusion applications in .NET
  • BlueDragon for Java EE Application Servers, providing support for deploying ColdFusion applications to any Java EE app server, such as Oracle WebLogic, IBM WebSphere, Tomcat and JBoss.
  • BlueDragon Server JX, for standalone ColdFusion application deployment, with support for JSPs (JavaServer Pages).
32 questions
9
votes
3 answers

What could break when migrating from Adobe ColdFusion to an alternative CFML engine?

We are currently using Adobe ColdFusion 9 for a rather large application. We are thinking about moving to Railo or Blue Dragon. What problems will we run into? Will it require a large amount of refactoring or will most CFML code just work on the…
Nicholas
  • 1,974
  • 4
  • 20
  • 46
6
votes
1 answer

Voice to text java application with Dragon(DNS) API

I am using Dragon's software for my application to transform voice into text.Based on voice command I want to execute specific function from my script, I have search lot but did not found how to integrate Dragon's API with application. I have also…
Mahesh
  • 1,063
  • 1
  • 12
  • 29
4
votes
4 answers

How do I get the ENTIRE URL as seen in the browser without JS?

I have an application I'm building in ColdFusion, whereby all requests will run through the index.cfm file. I have a .htaccess file that rewrites the URL. So, for example...if I write: http://domain.com/hello/goodbye/howdy The actual request always…
Michael Giovanni Pumo
  • 14,338
  • 18
  • 91
  • 140
4
votes
5 answers

Is it possible to deploy ColdFusion code on Google App Engine for Java?

Since ColdFusion is itself Java-based, I would imagine it's not too much of a stretch to suggest that CFML code could be deployed on Google App Engine. BlueDragon is a commercial solution for deploying CFML code on Java servers.
Yen
  • 2,176
  • 3
  • 19
  • 27
3
votes
1 answer

Custom CFInclude for file customization

Our code base has quite a bit of the following example as we allow a lot of our base pages to be customized to our customers' individual needs.
AntiTcb
  • 609
  • 4
  • 15
3
votes
1 answer

Blue Dragon Coldfusion server cache issue

I have an application build in ColdFusion MVC framework "Mach-II" and hosted on blue dragon ColdFusion server. It causes caching issue. When i added a new page with some contents and load the page than it's working fine. But when i made some changes…
3
votes
3 answers

What is Blue Dragon

I have searched the blue dragon website but cold not find any useful information on what it is. What is blue dragon? What is it used for and why would someone use it?
Luke101
  • 63,072
  • 85
  • 231
  • 359
3
votes
0 answers

Using CFEXECUTE to generate SVN log problems

I'm trying to use a CFEXECUTE command to generate an SVN log file for me. The problem I'm running into is the log file is coming back empty. I'm using SlikSVN and BlueDragon 7.1.0 on a Windows 7 machine:
mwill81
  • 115
  • 7
3
votes
4 answers

Coldfusion - Check if XmlNode exists

I've really been struggling to find a solution to this. My code is different from what I've seen on a Google search, and nothing I've tried will work. Basically as the title suggests I want to check if an Xml Node exists. This is because of…
Douglas
  • 71
  • 2
  • 8
3
votes
1 answer

Very strange behaviour with cfhttp an cfhttpparam

Happy New Year, The New Year found me wrestling with a coding problem. I am using ColdFusion and as for CFML engine “openBD”. I have a CFC that handles requests for the search engine that I use (SOLR search engine). I am “feeding” that CFC with some…
user734094
3
votes
1 answer

Coldfusion Webservice Receiving Object

I feel like a dolt for not figuring this one out. I have coldfusion webservice (bluedragon7) to accept information from a partner. They are passing xml in the result field and it only shows the first element of accessionNumber in the argument. If…
user1473443
  • 133
  • 1
  • 5
2
votes
2 answers

How to Increase ColdFusion Timeout

I have a CFM Page where I call a Stored Procedure. The page seems to be timing out due to the query taking too long to execute. We have tried optimizing/tuning the SQL query, made Clustered and Non-Clustered Indices , but the query is still taking…
user3114356
  • 71
  • 1
  • 2
2
votes
0 answers

openBlueDragon cfzip issue

I'm trying to zip a directory using cfzip with no success. The newly created directory contains PDFs. The code:
user734094
2
votes
1 answer

Why does this cfscript function work?

I wrote this function, the last line seems wrong* but it actually works. Can someone explain how does this stuff work ? function convertEncoding(str,from,to) { var charSetObj = createobject("java", "java.nio.charset.Charset"); var e_to =…
lud
  • 1,941
  • 20
  • 35
2
votes
2 answers

Calling a variable with a variable in its name - coldfusion?

Attempting to use squarebracket notation to reference a dynamic variable. (I'm looping through a set of product created by a query, creating fields for each tied to their unique SKU, if you're wondering about application) I've narrowed it down to…
EepMoody
  • 124
  • 10
1
2 3