coldfusion

Is it possible to reference a .NET assembly from ColdFusion?

Is it possible to reference a .NET assembly from ColdFusion? If so, how can I accomplish this? I am not a ColdFusion developer by any means. ...

How can I integrate Google Documents List Data API with coldfusion page?

Can someone please tell me the step that I should take to integrate google docs in .cfm page. It is a multi-user web application with single log-in , one username n password. Thanks. ...

jquery overlay ajax form post

im loading a external page from flowplayer overlay and im trying to submit a form in that page via ajax, and its reloading the page. when i browse the file directly it works fine but when its in the overlay it reloads the page on submit. is there anything to configure that it will load the jquery file and submit via ajax? thanks this...

Creating array in coldfusion

How would I create an array that will return data in the following format via CF 8? This information originates from an order table based on SKU value and QTY. I already know the query to use to pull the data. I just would like some help to format it. The original data exists in the following format SKU82328 QTY 1 SKU9832 QTY 3 SK...

Difference between cfif not...EQ and cfif...NEQ?

Is there any difference (performance-wise, for example) between <cfif not x EQ y> and <cfif x NEQ y> ? ...

Google account authorization for users accessing google docs

I am pulling list of docs in coldfusion via google docs API. I want users to click on the link and get signed in automatically in google docs, with my username and password. Google should not ask user name and password from them. I tried out this example http://cfgoogle.riaforge.org/ Till now I am able to pull up list of documents I h...

How to use OAuth in Coldfusion application?

I want to authorize my web-application for all users landing on it with a common google account. I am using google Document List API and want other users to get authorized by the common google account whenever they want to access the document. Thanks ...

Concurrency when using the Application scope

In Adobe ColdFusion, if <cfset Application.obj = CreateObject("component","ComponentName")> <cfset myResult = Application.obj.FunctionName()> I'm concerned that a var declared in the function's local scope might have concurrency problems because Application.obj is stored in the Application scope. <cffunction name="FunctionName"> <cfs...

How is mx:DataService in LCDS different from Flash Builder 4 DCD data features?

LCDS Data Management via <mx:DataService> (only available with fds.swc from LCDS) can do pagination and data sync, but FlashBuilder 4 + Flex4 can do them as well! See the following Flex4 + FlashBuilder 4 tutorials: Manage the access of data through paging Using Data Management to Synchronize Data Updates How do these 2 data managem...

How to authorize to download PDF document from content got from google-documents list-api

I have list of google docs which i got by authorizing myself with below code: <cfhttp url="https://www.google.com/accounts/ClientLogin" method="post" result="result" charset="utf-8"> <cfhttpparam type="formfield" name="accountType" value="HOSTED_OR_GOOGLE"> <cfhttpparam type="formfield" name="Email" value="[email protected]...

ExtJS/jQuery Script to check username and email availability

I am trying to write a script to check the availability of the passed username and email address, using ExtJs or JQuery; and Coldfusion 9 as server language. I have written one script but it's not working as intented. Thanks Vicente ...

CFDocument still cutting off the tops of text on some pages

when using cfdocument some of our pages have the top line cut off making it unreadable. I know there was a bug in 7, that was said to be fixed in 8. We're using 8,0,1,195765 and continue to have the problem. All my searches lead me to CF7. Anyone have any ideas? Here is a reproduction of the problem http://paradigmshiftls.com/pdftes...

Render HTML to a Div (jQuery/ColdFusion/Ajax)

I would like to create views, similar to MVC, whereas I can plug HTML into a DIV shadow box that is not originally loaded with the page. The site would need to retrieve the markup via an ajax call upon request. I can invision it being possible retrieving direct html from a data source, but I would like to design the site to be able to c...

Is there a script equivalent of cflogin?

Pretty much all of the ColdFusion language has been made available in some form using the cfscript syntax in ColdFusion 9. One item that I have not be able to find, though, is whether or not there is a script equivalent to the cflogin tag. If there isn't, is there maybe a workaround using flash remoting gateway? ...

Kill a running process in ColdFusion?

I'm writing a database load script in ColdFusion. It loads about 150,000 records across a dozen tables. I am running the script through a web browser request. Is there any way to kill the process once I've requested the page? I can stop the page in the browser, but the database inserts continue on the backend until the script has complet...

Is it possible to convert a Microsoft Word document to PDF with ColdFusion?

The above question says it all. I know you can create a PDF from an image file or HTML in ColdFusion 8 using CFPDF, but I'm wondering if it's possible to create a PDF from a MS Word document directly - in CF8 or CF9. Could you import the Word document and convert it to HTML or an image file, and then do the conversion? Or is there a sho...

How to unit test redirects in cfwheels

What would be the correct way of unit testing a controller action that performs a redirect? UPDATE: I'm a core developer on the CFWheels project. The whole reason I'm asking this question is currently I'm working on enhancing the built in testing framework we have and I'm wondering on how to approach and implement something like this in...

Cleanest way to log who updated what in CF-ORM / Hibernate?

One of the requirements of my project is to log who (which Staff) updated what (from what version to what version). UI needs to show who updated entity X at what time and what are updated. What is the cleanest way to implement this? For discussion purpose, imagine... Account has a Contact, and I need to store who update the contact, w...

loading jquery in cfdiv

im using a cfdiv to bind data from another page eg: (bind.cfm?id=123) and that other page(bind.cfm) has a jquery scrollable from flowplayer http://flowplayer.org/tools/demos/scrollable/index.html and its not working it doesnt scroll... i included all the js and css files in that file and nothing, but when i browse to that file directly (...

Migrating from ColdFusion to ASP.NET

One my client has his website developed using coldfusion... Now I want to migrate that website from coldfusion to asp.net... As a web developer i know it is possible,but want to know a few things Challenges/Learning curves involved in migrating from coldfusion to asp.net... What are the factors i have to watch out for during migration?...