0

ajaxCFC Issue

ColdFusion
Hello All,
Does anyone have any thoughts on why this page (w/ ajaxCFC) works in FF, but
not IE?

http://www.castlesandestates.com/index.cfm?view=agents2&agentType=IRES

Here is my JS code..
http://codeshare.ulatu.com/oct2df1b

Here is my cfc..
http://codeshare.ulatu.com/octafb05

The JS function that doesn't seem to be working in IE is "getStates()"

Could it have something to do with this Knowledge Base article?

http://support.microsoft.com/kb/276228

It appears that addOptions() in the util.js file does you innerHTML.

Good Day!
Ryan
tags:
ColdFusion
0

PayPal and ColdFusion

ColdFusion

Does anyone out there have any experience with using PayPal and ColdFusion together?  I've been Googling tonight and it looks like the easiest way is to use IPN and generate individual buttons for each product.  With the possibility of 30 or 40 products I'd hate to have to make a new button for each product.  Is there anyway around this?

Good Day!
Ryan

tags:
ColdFusion
0

ColdFusion 8 Released!!

ColdFusion

ColdFusion 8 is finally here and here is a summary of features.. 

Performance increases
Adobe® ColdFusion® 8 software delivers significant performance improvements over all earlier releases of the product.

Server Monitor
ColdFusion 8 introduces the new Server Monitor and Multiserver Monitor. By providing information about the server — including requests, queries, memory usage, and errors — the Server Monitor allows you to troubleshoot and fine-tune applications in development and in production. You can also set alerts and other actions to help prevent memory problems, slow pages, or other issues that would negatively impact a user's experience with the application.

PDF features
ColdFusion 8 applications can dynamically generate and interact with PDF documents and forms for a printable, portable way to intelligently capture and share information.

Ajax features
ColdFusion 8 can easily provide data to existing Ajax applications and frameworks. You can use simple tags to access a large library of prebuilt Ajax user interface components such as rich text editors, data grids, tree controls, tab navigators, and more.

.NET integration
With ColdFusion 8, you can specify any .NET object — either local or remote — and use it in your ColdFusion application, just like any Java™ or other object resource.

Microsoft Exchange Server integration
ColdFusion 8 applications can programmatically access Exchange Server functionality such as calendars, tasks, and contacts.

Interactive debugger
ColdFusion 8 introduces an Eclipse™ plug-in debugger. Use it to set breakpoints, watch variables, and step through code, making it easier to debug all your application code.

Adobe Flex integration
ColdFusion 8 now includes Adobe LiveCycle® Data Services ES (formerly Flex™ Data Services) and other data exchange improvements to simplify the data-enabling of rich Internet applications (RIAs) you build with ColdFusion and Flex.

Per-application settings
ColdFusion 8 allows you to set ColdFusion mappings and custom tag paths on a per-application basis.

Multi-threading
ColdFusion 8 introduces the new CFTHREAD tag, which allows you to create, end, join together, or temporarily suspend the processing of specific ColdFusion threads.

Image manipulation
ColdFusion 8 adds more than 50 new tags and functions for creating and manipulating images, from simple to sophisticated. For example, the new CFIMAGE tag provides shortcuts to the most common image actions, including reading, writing, resizing, rotating, and converting images.

Presentations on demand
ColdFusion 8 allows you to dynamically create multimedia experiences and eLearning courses with animation, audio, and video. These high-quality, on-demand presentations are generated on the server with up-to-the-minute data and content from multiple external sources.

Atom and RSS feeds
ColdFusion 8 introduces the new CFFEED tag, which can read and create RSS and Atom feeds in commonly used formats, so you can quickly and easily create complex content syndication applications.

ZIP and JAR file features
ColdFusion 8 introduces two new tags, CFZIP and CFZIPPARAM, so you can manipulate ZIP and JAR files for working with file archives.

User-based Administrator and RDS access
ColdFusion 8 allows you to create multiple ColdFusion Administrator and Remote Development Services (RDS) accounts with individual permissions, so you can tailor Administrator and RDS access to fit your specific security needs. The roles assigned to a user determine which pages in the ColdFusion Administrator and which functions in the Administrator API a user can access.

Improved file manipulation functions
ColdFusion 8 adds several new file manipulation functions to the ColdFusion Markup Language (CFML), most notably the ability to read and write large files in defined segments, rather than in a single operation.

JavaScript operators in CFML
ColdFusion 8 supports common JavaScript operators such as ++, ==, ||, <, and > so they can be used in CFML expressions.

CFC improvements
ColdFusion 8 adds several highly requested improvements to ColdFusion components (CFCs), including the ability to create interface definitions, use J2EE session replication in a cluster, have access to the CFCs in session data across all the machines in a cluster, and use the new onMissing Method function.

Strong encryption libraries
ColdFusion 8 now includes RSA BSAFE Crypto-J libraries, which provide FIPs 140-certified strong encryption.

Reporting enhancements
ColdFusion 8 introduces a completely new version of the ColdFusion Report Builder. Use it to create high-quality, structured reports with more output choices and a more consistent look and feel throughout your applications. You can also create and apply cascading style sheet (CSS) definitions to reports, export your reports in HTML or XML format, and create report styles for all of your reports.

Database interaction improvements
ColdFusion 8 supports nested transactions, provides a new DBINFO tag to programmatically access information about a data source, allows stored procedures and queries using CFQUERYPARAM to be cached, and much more. Plus, there is expanded database driver support with new options for SQL Server 2005, Oracle 10g, Sybase ASE15, MySQL 4 and 5, PostgreSQL 8, and others.

Argument collections
ColdFusion 8 makes it much simpler to code tags with many attributes. You can now specify an argumentsCollection attribute in most tags to specify the tag's attributes in a single structure.

Array and structure creation improvements
ColdFusion 8 allows you to create arrays and structures implicitly in assignment statements without using the ArrayNew or Structnew functions. The result is cleaner code with less typing.

Expanded platform, OS, and database support
ColdFusion 8 offers broad platform support with notable additions of Mac OS X on Intel®, JBoss, 64-bit support on Solaris™, JDK 1.5 and JDK 1.6, and support for VMware and Microsoft Virtual Server.

Get you some !!

Good Day!
Ryan

tags:
ColdFusion
0

My Most Common Error

ColdFusion

For getting to put the damn semi colon ';' at the end of cfscript statements!!!  God how annoying!!!

Good Day!
Ryan

tags:
ColdFusion
0

ajaxCFC issue

ColdFusion
Hey Everyone,
I have a pretty damn simple AJAX call on a new web site I'm setting up but it's not working. I get the dreaded "Invalid Reply from Server" message. According to Firebug the result I'm getting from AJAX call is blank. I have no idea where the  problem is. Based on setting up test queries I know that the CFC in question  long with ajax.cfc are both getting called however the function in question,  getEvents does not get gett called. Below is my code.

Code loading the AJAX and JS files

JS Code calling the CFC

CFC Function trying to return a single event

This is the part where I'm thinking I might have an issue. These are
the onRequest, onRequestStart and onRequestEnd Functions

I remember reading something on Rob's blog about onRequest interupting
AJAX calls, but his solution, setAbortAfterRequest(true); in the
AJAX.cfc file did not have any effect on this issue.

Any thoughts? Am I missing something simple?

Good Day!
Ryan
tags:
ColdFusion
0

CFEclipse News

ColdFusion

Today, in a stint of cleaver marketing or a slip of the Google Talk chat, Mark Drew announced on Twitter that he's starting to work on CFEclipse 2.0!  This is very exciting news. All ColdFusion developers using CFEclipse owe Mark Drew a lot of "thank yous" for the amount of time and effort he has put into this project.  

Excerpt from Twitter's Google Talk bot: 

markdrew: Can you keep a secret? Working on CFEclipse 2.0! :) (planning stage)
markdrew: Note to self, make sure you are not sending a message to twitter when you want to send it to a real person

Good Day!
Ryan

 

 

tags:
ColdFusion

Search