HTML5 Forms, Fallback Options and Validation

On May 3, 2012, in Javascript, Browsers, by Anuj Gakhar

I am starting to get into HTML5 development slowly and one of the first things that came across was the forms. HTML5 has got some nice features up it’s sleeve when it comes to forms. I won’t be going into the details of what features are available in HTML5 forms and what they do and […]

 

Replacing BugTracer Email Functionality in ColdBox with LogBox Loggers

On April 24, 2012, in ColdFusion, by Anuj Gakhar

ColdBox used to have a BugTracerReport config element which you could configure to send error emails to yourself while showing a user friendly error page to the site users. Not quite sure of the exact version, but I think this feature was deprecated in version 3.1 in favour of the new LogBox which comes built-in […]

Tagged with:  

Changing the default URL pattern for REST Services in ColdFusion 10

On February 20, 2012, in ColdFusion, REST, by Anuj Gakhar

In my previous post, I did a very simple REST service using Adobe ColdFusion 10. The way ColdFusion handles REST-enabled services is via a pre-defined Servlet Mapping in web.xml that looks like this :- [xml]<servlet-mapping id="coldfusion_mapping_15"> <servlet-name>CFRestServlet</servlet-name> <url-pattern>/rest/*</url-pattern> </servlet-mapping>[/xml] This Servlet Mapping has a URL Pattern which tells CF that any URL starting with “/rest” […]

Tagged with:  

Using REST Services in ColdFusion 10

On February 20, 2012, in ColdFusion, REST, by Anuj Gakhar

ColdFusion 10 went into public beta a couple of days ago and I installed it on a Windows 7 VM, to test it out. There are a LOT of new features in this release and I am sure the next few weeks will be pretty busy in the ColdFusion blogosphere, with posts coming from all […]

Tagged with:  

ColdFusion 10 and ColdFusion Builder 2.0.1 Public Beta

On February 18, 2012, in ColdFusion, by Anuj Gakhar

ColdFusion 10 and ColdFusion Builder 2.0.1 beta is out… go get your copy from here :- http://labs.adobe.com/technologies/coldfusion10/ – I am just going to install it in a VM and play around with it over the next few days.. Some of the new features (directly from the Adobe’s site) Unique HTML5 built-in support to deliver richer interfaces without […]

Tagged with:  

Xcode “Valid Signing Identity not found” warning

On February 14, 2012, in Mobile, by Anuj Gakhar

I switched computers today to do some Xcode development. (Yes, I am trying to learn iOS development using Objective-C). I had everything setup on my MacBook Pro but I wanted to do Xcode development on the new iMac I got. My sample iPhone app that I am building was working fine in the simulator.  Problems […]

Tagged with:  

Using Apache mod_cache

On February 10, 2012, in Web Development, by Anuj Gakhar

Recently, I’ve been looking at some of the caching mechanisms to allow for a faster response time from Apache webserver. I know this is a pretty huge topic and it appears that the general consensus is to use one of the known tools like redis, memcached or varnish. However, before diving into one of these […]

Tagged with:  

Railo, ORM and MySQL 5.5.x gotcha

On February 1, 2012, in ColdFusion, Railo, by Anuj Gakhar

I was testing the ORM stuff in the latest version of Railo (3.3.1.000 final) and after setting up the ORM settings in Application.cfc, when I tried to run the code, I could not get Railo to create the database tables, even with dbcreate=”dropcreate”. Here is my code, that was not working :- [cf] this.ormsettings = […]

Tagged with:  

A long awaited update on coldfusiondocs.com

On January 30, 2012, in ColdFusion, Javascript, by Anuj Gakhar

I launched coldfusiondocs.com in December, 2007 and back then, it was a Flex based app. I got feedback from several people and everyone liked the app. However, for the past year or so, I have not been able to give it the time and attention that it deserves for several reasons. I have been keeping […]

Tagged with:  

Railo, MySQL and Column Aliases

On January 11, 2012, in SQL, Railo, by Anuj Gakhar

Today, I encountered an error with one of my Railo powered websites (with MySQL as database) – it started throwing an error wherever column aliases were being used in the queries. On a cfdump, the column aliases were just not there in the resultset. The original column name was, though. Running the same query in […]

Tagged with:  
© 2011 Anuj Gakhar