coldfusion

ColdFusion and trailing comma

How do I remove a trailing comma from a string in ColdFusion? ...

Adding to a Coldfusion classpath running on an instanced JRun server

I'm having some trouble getting my Coldfusion server classpath to recognize my custom java jars. The classpath is not reading my jvm.config file correctly (I assume out of my JRun server which is where the CF instance is running out of, it's a production server with multiple sites attached). I have been banging my head against the wall...

server-side css selectors

I am creating a tool that will check dynamically generated XHTML and validate it against expected contents. I need to confirm the structure is correct and that specific attributes exist/match. There may be other attributes which I'm not interested in, so a direct string comparison is not suitable. One way of validating this is with XPa...

Anyone out there used vinpower?

I have to implement the VinPower application. They offer a java version, a C dll and an active x dll, if anyone has an idea on where I could begin, i'd appreciate it. ...

How can I access a public static member of a Java class from Coldfusion?

I think the above question says it all. ...

ColdFusion web.xml?

Is there a coldfusion analog for the deployment descriptor/web.xml file found in a jee web container? I know CF is running on top of JRun and that I could just tweak the jrun dd, but what about an application specific configuration file? Is there something like this that I'm not aware of or do you just have to roll your own? ...

Matching values in two tables query (SQL and Coldfusion question)

I have a query that has a list of base values and a list of language values. Each value has a key that matches to the other. The base values are stored in one table and the language values in another. My problem is that I need to get all matching base values removed from the QUERY except for one. Then I export that query into an exce...

CSS bleed-through with cfinput type="datefield"

I have a form using multiple <cfinput type="datefield" ...>. They are positioned in such a way that the pop-up CSS calendar should appear over the field for others. However, the text fields for the other dates end up in front of the calendar. This is only an IE issue as Firefox and Safari work just fine. Is there a simple CSS hack or s...

How do I get the contents of a string minus the extension in ColdFusion?

for example, I want just the "filename" of a file in a field. Say I have myimage.jpg I only want to display "myimage" How do I get just that? ...

Best Database With ColdFusion on OS X

Hi All, ColdFusion 8 Standard Edition on OS X Leopard. Developing a new website. What is the best database to use in conjunction with ColdFusion? Will be storing simple Credit Card operations, registration information, CRM info for an indie software company ...

Are ColdFusion objects passed by reference or by value?

Are ColdFusion objects (i.e. CFCs invoked via cfobject) normally passed by reference or by value (copied in memory)? And is it possible to force ColdFusion to pass an object in either manner? ...

What does "The DBMS returned an unspecified error. The command code was 193." mean?

Anyone have an idea of what this means for MS SQL Server? I'm also calling this from Coldfusion, although I'm guessing that doesn't make any difference. ...

How to run a very large query (SQL Server and ColdFusion)

I've got a reasonably simple query (this time) that I need ALL the results back from (I'm storing them in an excel spreadsheet). The query itself times out the server, so how do I go about running it without that happening? ...

.load in jQuery not loading cfcharts in IE6

I am trying to dynamically load the contents of a div tag with a .cfm page that contains a cfchart in png format. When the user clicks on a link, I am using the load function to put the .cfm page into the div. $("#bank").bind("click", function(){ $("#chartx").load("bank.cfm"); }); I can get this to come up perfectly in Firefox, bu...

What hardware (config) and software (os version/app version) is recommended for developing for ASP.NET/Coldfusion and MS SQL Server?

Hi, We are a small company and would like to know the best possible (and affordable) hardware and software configuration we ought to be using for our development environment. At this moment we are a team of four people who work remotely from different locations and each one of us uses a laptop and ADSL connection to work on our projects...

javascript array to coldfusion

I have an array i've create in Javascript. The end result comes out to element1,element2,,,element5,element6,,,element9.... etc Once passed to coldfusion, it removes the null elements, I end up with element1,element2,element5,element6,element9 I need to maintain these spaces, any ideas? My problem may begin before this, to explain in...

ColdFusion vs PHP

Can anyone share with me (without fervent evangelism, please) any comparative experiences you might have with regard to ColdFusion and PHP in developing internal enterprise browser-based applications? Specifically (but not limited to): 1: Do the rapid-development characteristics of ColdFusion compensate for any performance issues resu...

Bookmarked page redirect

I recently converted a site from asp to CF. Unfortunately, alot of the old users had the "homepage" bookmarked. www.thedomain.com/homepage.asp Is there a sort of catch all way I could redirect any traffic from that page to the current index.cfm? I would normally just delete those files, but the owner(s) wanted to keep it around for t...

Select one column DISTINCT SQL

Added: Working with SQL Server 2000 and 2005, so has to work on both. Also, value_rk is not a number/integer (Error: Operand data type uniqueidentifier is invalid for min operator) Is there a way to do a single column "DISTINCT" match when I don't care about the other columns returned? Example: **Table** Value A, Value L, Value P Valu...

Is it possible to get line numbers for stack traces on .Net CF 2.0 or 3.5

I have a .Net CF 2.0 application and am using log4net to log errors. I get a stack trace, but it doesn't have any line numbers. I noticed that it doesn't appear to deploy the pdb file to the device, so I tried to manually place it in the same directory as the exe. But that didn't help. ...