
Esberi Technologies is delighted to announce the launch of Adobe Certified Expert (ACE) Training Program.
Currently, Esberi is offering ACE training programs in:
• Adobe Flex (and LiveCycle Data Services) development
• Adobe AIR (Adobe Integrated Runtime) development
The Product Management teams of Adobe Flash Platform developer tools are visiting Bangalore for a few days this January.We are inviting developers on the Adobe Flash Platform (specifically Adobe Flex and Adobe ColdFusion), to interact with the product management team.
Register for the Voice Conference on Jan 21st 4 PM. More Information about the Community Meeting available here http://meetflexcfpm.eventbrite.com/
jQuery UI 1.7: The User Interface Library for jQuery: Written by Dan Wellman, this book will help developers build highly interactive web applications with ready-to-use widgets from the jQuery User Interface library. Readers will learn how each component can be initialized in a basic default implementation and then see how to customize its appearance and configure its behavior to tailor it to the requirements of their application. Readers will be taken through the configuration options and the methods exposed by each component's API to see how these can be used to bring out the best of the library.
For more information, please visit: http://www.packtpub.com/user-interface-library-for-jquery-ui-1-7/book

Learning jQuery 1.3: Learning jQuery 1.3 introduces readers to the basics of jQuery for adding interactions and animations to their pages. Written by Karl Swedberg and Jonathan Chaffer, Learning jQuery 1.3, will show web designers how to write a functioning jQuery program in just three lines of code. Developers will learn to add impact to their actions through a set of simple visual effects and also to create, copy, reassemble, and embellish content using jQuery's DOM modification methods. Furthermore, users will also learn to send and retrieve information with AJAX methods as well as extend the jQuery library with their own plug-ins.
For more information, please visit: http://www.packtpub.com/learning-jquery-1.3/book

Epicenter Consulting is looking for ColdFusion Developer. More information and details can be found here - http://www.bit.ly/ColdFusionTalent
Source: Latest Adobe News by Smart Category by CodFusion
Today I was trying to figure out a person's problem using my EventCalendar app on ColdFusion 9 and ended up finding an interesting difference between CF9 and older versions of ColdFusion. In the app, jQuery calls a CFC which returns a query dataset in JSON format. Here are the two different JSON returns for the same call to the same CFC.When running in CF8 {"ROWCOUNT":1,"COLUMNS":["ID","TITLE","BODY","STARTTIME","ENDTIME","READONLY"],"DATA":{"id":["B434F6C3-D806-2328-29EA369C70E81CA5" ],"title":["rfrf"],"body":["erfer"],"starttime":["February 11, 2010 10:00"],"endtime":["February 11, 2010 13:30"],"readonly":[false]}} And now in CF9 {"ROWCOUNT":1,"COLUMNS":["ID","TITLE","BODY","STARTTIME","ENDTIME","READONLY"],"DATA":{"ID":["B434F6C3-D806-2328-29EA369C70E81CA5" ],"TITLE":["rfrf"],"BODY":["erfer"],"STARTTIME":["February 11, 2010 10:00"],"ENDTIME":["February 11, 2010 13:30"],"READONLY":[true]}} It's very slight but at the same time it was breaking my jQuery code. The columnSource: coldfusionBloggers.org Feed
Back at CFinNC, I sat down with Dan Wilson for an informal 15 minute interview about standardization, open source and my thoughts about CFML. DZone published the video today. Watch Dan Wil...Source: coldfusionBloggers.org Feed
I was working on setting the transaction isolation level for the first CF9 ORM application I have put into production and thought I would share what I learned.
The first thing I learned is that by default, hibernate will use whatever isolation the datasource it is using has set. In the drivers Coldfusion uses for MSSQL, the default is TRANSACTION_READ_COMMITTED.
What I needed for my application was TRANSACTION_READ_UNCOMMITTED, so I knew that this had to change. I researched how to change it at the datasource level, but couldn't find a "quick and dirty" way to do that, so I decided that since this application was using hibernate ORM, I would set it there. If anyone of you knows how to change this setting at the datasource level on CF9, feel free to chime in. I know how to change it on CF 6/7, but that doesn't work on CF 9.
So, since changing the isolation level isn't one of the settings available in the ormsettings, I had to create a custom hibernate config file.
At first I thought this would be difficult as I thought that I would have to insert all the "standard" settings the Coldfusion implementation of hibernate was already using, but it turns out, you only have to set any additional properties you wish to use. Here is a list of available hibernate configuration options.
http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html
So, on to some code...
Here is my newly created hibernate config file.
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<!-- a SessionFactory instance listed as /jndi/name -->
<session-factory
name="java:hibernate/SessionFactory">
<!-- properties -->
<property name="connection.isolation">1</property>
</session-factory>
</hibernate-configuration>
Notice one thing in the config file. <property name="connection.isolation">1</property>. Why one you ask...
Here is the int values for each of the isolation levels available.
| java.sql.Connection | ||
|---|---|---|
public static final int |
<a href="/java/sql/Connection.html#TRANSACTION_NONE"><span style="text-decoration: underline;"><span style="color: #0066cc;">TRANSACTION_NONE</span></span></a> |
0 |
public static final int |
<a href="/java/sql/Connection.html#TRANSACTION_READ_COMMITTED"><span style="text-decoration: underline;"><span style="color: #0066cc;">TRANSACTION_READ_COMMITTED</span></span></a> |
2 |
public static final int |
<a href="/java/sql/Connection.html#TRANSACTION_READ_UNCOMMITTED"><span style="text-decoration: underline;"><span style="color: #0066cc;">TRANSACTION_READ_UNCOMMITTED</span></span></a> |
1 |
public static final int |
<a href="/java/sql/Connection.html#TRANSACTION_REPEATABLE_READ"><span style="text-decoration: underline;"><span style="color: #0066cc;">TRANSACTION_REPEATABLE_READ</span></span></a> |
4 |
public static final int |
<a href="/java/sql/Connection.html#TRANSACTION_SERIALIZABLE"><span style="text-decoration: underline;"><span style="color: #0066cc;">TRANSACTION_SERIALIZABLE</span></span></a> |
8 |
Then in my application.cfc I set
<cfset this.ormsettings = {dialect="MicrosoftSQLServer", ormconfig="hibernate.xml"}>
Now, be sure that you have your hibernate.xml file somewhere outside of webroot to protect it from being read by any evil eyes.
There you go, hope this helps you as it took me a lot of digging to figure it out
Source: Latest Adobe News by Smart Category by TeraTech Excellent Software blog
Recently we helped out Allergy Supply improve their ColdFusion website. The old website was hard for customers to use. Some don’t complete check out. And it didn’t display correctly in some browsers. We review current site front end and shopping cart and make list of suggested improvements and estimate of cost to do. We fixed a long list of bugs. And we figured out the shopping cart abandonment rate in the site statistics. Normal 0 "From time to time we all need IT help. Allergy Supply Company recently had a project beyond our capability. We called TeraTech. After a consultationSource: coldfusionBloggers.org Feed
A simple and fast syntax for accessing Mura CMS data and objects
Source: Latest Adobe News by Smart Category by CodFusion
If you're running ColdFusion 8 or 9 servers, I would encourage you to upgrade to the latest JDK 1.6.0_18. There have been several notices from Sun and others regarding vulnerabilities in older versions of Java. As an fyi, the default version on CF 9 is 1.6.0_14 so even it is pretty old now. http://www.us-cert.gov/current/archive/2009/12/04/archive.html#sun_releases_update_17_for http://www.us-cert.gov/cas/bulletins/pdf/SB09-320.pdf None of these vulnerabilities directly seem to affect ColdFusion, but I prefer to avoid problems whenever possible. I've started upgrading servers and haven't experienced any problems. I've ping others in the community that have also made this upgrade and no one has run into anySource: Akbarsait's Blog
I have got some problems while installing ColdFusion 8 and configuring IIS7 on my Windows 7 machine. Luckily I got it solved immediately after reading the solution at the web about configuring IIS 7 to work with ColdFusion by Dale Fraser, Paul Kukiel and Sameer Gupta. I don't know why this problem is not yet taken care by Adobe and I heard even with ColdFusion 9 the problem is still exists. Let's hope Adobe will fix this issue with the upcoming ColdFusion 9 Update 1.Source: Akbarsait's Blog
This post is to show how simply we can add Highslide JS to your blogCFC blog in a 4 simple steps. Highslide JS is an open source JavaScript image, media and gallery viewer library and its free only for Non-commercial use more details are at Highslide site read it before you start using in your blog. Highslide will be very useful in placing full size images at your blog without worrying about your blog layout size or width. Here are the steps on how we can include Highslide to blogCFC blog. [More]Source: Akbarsait's Blog
I tried and used some database administration tools for MySQL but I feel like something was missing in its features. Recently I started using Navicat for MySQL database management which is really awesome and having many features which will be used to solve and manage your database with a very minimal amount of time. [More]