Tag Archives: ColdFusion

Column formats in CFSpreadsheet

I really like the spreadsheet functions added to ColdFusion 9. It makes my life so much easier but I discovered an annoyance with the spreadsheetFormatColumn function today. It would seem that you have to set the column formats after you add data to a spreadsheet. If you attempt to set it before calling spreadsheetAddRows it [...]

Posted in ColdFusion, Programming | Also tagged | Leave a comment

JSON format and serializing ColdFusion query objects

Every so often there is a tiny problem that has you scratching your head until you RTFM. I love JSON, it’s totally awesome and the fact that you can not convert CF objects natively is even better! I ran into a small issue where I was using serializeJSON on a structure that contained a query [...]

Posted in ColdFusion, Programming, Thinking | Also tagged , | Leave a comment

It’s been a while

I’ve not posted anything on my blog for a while, it always amazes me how the top bloggers in the ColdFusion world find the time to post almost daily about tips, tricks, resources and I hardly every find the time to write a note to myself. My posts don’t seem as interesting or as insightful [...]

Posted in ColdFusion, General | Also tagged , | Leave a comment

CFPOP and SSL

One of the reasons I love Adobe’s ColdFusion so much is the fact that it is built on a Java engine and you are able to use a lot of the powerful features of Java from CF. I however don’t get to use this feature often enough, mainly because most of the things I work [...]

Posted in ColdFusion, Java, Programming | Also tagged , , | Leave a comment

Setting secure attribute of JSESSIONID cookie in ColdFusion 8

As part of PCI compliance our servers were run through third party security auditing and one warning we received was “Missing Secure Attribute in an Encrypted Session (SSL) Cookie”. This warning referred to the JSESSIONID cookie being set in our SSL enabled pages not having the SECURE attribute set. In ColdFusion there is no way [...]

Posted in ColdFusion, Security | Also tagged , , | Leave a comment